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,8 +1,10 @@
all: main
main: ../../file.o ../../std.o ../../path.o ../../string.o
main: ../../file.o ../../std.o ../../path.o ../../string.o main.o
ld -m elf_i386 main.o ../../file.o ../../std.o ../../path.o ../../string.o --output main
main.o:
fasm main.asm
ld -m elf_i386 main.o ../../file.o ../../std.o ../../path.o --output main
../../std.o:
make -C ../.. std.o