Use uint32_t rather than enum as fields for ABI
[libside.git] / src / Makefile
CommitLineData
f611d0c3
MD
1all: test
2
3tracer.o: tracer.c
4 gcc -O2 -g -Wall -I../include/ -c -o tracer.o tracer.c
5
6test.o: test.c
7 gcc -O2 -g -Wall -I../include/ -c -o test.o test.c
8
9test: tracer.o test.o
10 gcc -O2 -g -Wall -o test tracer.o test.o
11
12.PHONY: clean
13
14clean:
1533629f 15 rm -f test *.o
This page took 0.026054 seconds and 4 git commands to generate.