feat: минимальное решение
This commit is contained in:
17
08-debugging/Makefile
Normal file
17
08-debugging/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user