Archived
1
0
This repository has been archived on 2025-01-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
asm_libs/examples/HWA/makefile
T
2022-11-06 19:11:41 +03:00

14 lines
169 B
Makefile

all: main
main: ../../std.o main.o
ld -m elf_i386 main.o ../../std.o --output main
main.o:
fasm main.asm
../../std.o:
make -C ../../ std.o
clear:
rm main.o main