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
Sweet Bread c163efd83d Init project
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