Archived
1
0

Error handler, makefile optimisation

This commit is contained in:
Sweet Bread
2022-11-06 19:11:41 +03:00
parent 0bd9f11f6f
commit dc6d943e5c
8 changed files with 36 additions and 10 deletions
+4 -2
View File
@@ -1,9 +1,11 @@
all: main
main: ../../std.o
fasm main.asm
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