Split enum macros
[libside.git] / src / Makefile
CommitLineData
f611d0c3
MD
1all: test
2
6841ae81
MD
3side.o: side.c
4 gcc -O2 -g -Wall -I../include/ -c -o side.o side.c
5
f611d0c3
MD
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
6841ae81
MD
12test: tracer.o test.o side.o
13 gcc -O2 -g -Wall -o test tracer.o test.o side.o
f611d0c3
MD
14
15.PHONY: clean
16
17clean:
1533629f 18 rm -f test *.o
This page took 0.022377 seconds and 4 git commands to generate.