aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 12971ce821b23b4aed6251ab519d6b551abcc70d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all : test

CFLAGS:=-Iinclude -fPIC -g -Os
LDFLAGS:=-lpthread -lusb-1.0

test : test.c lib/libsurvive.so
	gcc -o $@ $^ $(LDFLAGS) $(CFLAGS)

lib/libsurvive.so : src/survive.o src/survive_usb.o src/survive_data.o src/survive_process.o
	gcc -o $@ $^ $(LDFLAGS) -shared

clean :
	rm -rf *.o src/*.o *~ src/*~ test libsurvive.so