mirror of
https://github.com/danog/gllvm.git
synced 2024-11-27 01:44:41 +01:00
21 lines
194 B
Makefile
21 lines
194 B
Makefile
|
|
|
|
|
|
|
|
one:
|
|
${CC} test.c -fsanitize=address -o test
|
|
|
|
|
|
test.o:
|
|
${CC} -c test.c -fsanitize=address
|
|
|
|
|
|
test: test.o
|
|
${CC} test.o -fsanitize=address -o test
|
|
|
|
|
|
|
|
clean:
|
|
rm -f test.o test .test* *~
|
|
|