blob: 029757d3cc15020d66d1668fe026f1ef1f7b0f98 (
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/os_generic.o 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
|