mirror of
https://github.com/danog/gllvm.git
synced 2024-11-26 19:44:42 +01:00
19 lines
228 B
Makefile
19 lines
228 B
Makefile
|
|
all: test
|
|
|
|
#one:
|
|
# ${CC} test.c -dead_strip -fsanitize=address -o test
|
|
|
|
|
|
test.o:
|
|
${CC} -c test.c -fsanitize=address
|
|
|
|
|
|
test: test.o
|
|
${CC} test.o -dead_strip -fsanitize=address -o test
|
|
|
|
|
|
|
|
clean:
|
|
rm -f test.o test .test* *~
|