Implement fixed-integer vla
[libside.git] / src / Makefile
1 all: test
2
3 tracer.o: tracer.c
4 gcc -O2 -g -Wall -I../include/ -c -o tracer.o tracer.c
5
6 test.o: test.c
7 gcc -O2 -g -Wall -I../include/ -c -o test.o test.c
8
9 test: tracer.o test.o
10 gcc -O2 -g -Wall -o test tracer.o test.o
11
12 .PHONY: clean
13
14 clean:
15 rm -f test *.o
This page took 0.030328 seconds and 5 git commands to generate.