Archived
1
0

Init project

This commit is contained in:
Sweet Bread
2022-11-06 13:51:51 +03:00
commit c163efd83d
32 changed files with 1110 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
all: main
main: ../../std.o ../../string.o ../../network.o ../../dns.o ../../dnstoys.o
fasm main.asm
ld -m elf_i386 main.o ../../std.o ../../string.o ../../network.o ../../dns.o ../../dnstoys.o --output main
../../std.o:
make -C ../.. std.o
../../string.o:
make -C ../.. string.o
../../network.o:
make -C ../.. network.o
../../dns.o:
make -C ../.. dns.o
../../dnstoys.o:
make -C ../.. dnstoys.o
clear:
rm main.o main