Split enum macros
[libside.git] / src / Makefile
... / ...
CommitLineData
1all: test
2
3side.o: side.c
4 gcc -O2 -g -Wall -I../include/ -c -o side.o side.c
5
6tracer.o: tracer.c
7 gcc -O2 -g -Wall -I../include/ -c -o tracer.o tracer.c
8
9test.o: test.c
10 gcc -O2 -g -Wall -I../include/ -c -o test.o test.c
11
12test: tracer.o test.o side.o
13 gcc -O2 -g -Wall -o test tracer.o test.o side.o
14
15.PHONY: clean
16
17clean:
18 rm -f test *.o
This page took 0.024041 seconds and 4 git commands to generate.