feat: минимальное решение

This commit is contained in:
Miheev Egor
2024-10-30 22:37:36 +03:00
parent 2dbf24db50
commit dd6c23d79f
3 changed files with 78 additions and 0 deletions

17
08-debugging/Makefile Normal file
View File

@ -0,0 +1,17 @@
all: test testee
test: test.o
gcc $^ -o $@ -g
test.o: test.c
gcc -c $^ -g
testee: testee.o
ld $^ -o $@
testee.o: testee.asm
nasm -felf64 $^ -o $@ -g
clean:
rm *.o test *.gch