Archived
1
0
This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
asm_libs/examples/HWA/makefile

12 lines
153 B
Makefile
Raw Normal View History

2022-11-06 13:51:51 +03:00
all: main
main: ../../std.o
fasm main.asm
ld -m elf_i386 main.o ../../std.o --output main
../../std.o:
make -C ../../ std.o
clear:
2022-11-06 18:21:21 +03:00
rm main.o main