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
2022-11-06 13:51:51 +03:00

11 lines
152 B
Makefile

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:
rm main.o main