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

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