mirror of
https://github.com/samsonjs/compiler.git
synced 2026-03-25 08:45:52 +00:00
17 lines
264 B
Makefile
17 lines
264 B
Makefile
test:
|
|
cd test && make all
|
|
|
|
elfwriter: elfwriter.c
|
|
gcc -o elfwriter elfwriter.c -lelf
|
|
|
|
test_elf: elfwriter build
|
|
./elfwriter test.bin 4 test_elf.o
|
|
ld -o test_elf test_elf.o
|
|
./test_elf
|
|
|
|
clean:
|
|
@rm -f elfwriter
|
|
@rm -f test_elf.o
|
|
@rm -f test_elf
|
|
|
|
.PHONY: test
|