Using LORCON now for channel hopping and interface setup. Client is pretty much all...
[soho-sigint.git] / client-wifi / client-c / Makefile
1 CFLAGS= -std=gnu99
2 DEPS = endian.h 
3 LIBS=$(LDFLAGS) -L. -lpcap -lcurl -ljson-c -lssl -lorcon2
4 OBJ = soho-sigint-wifi.o radiotap.o
5
6 %.o: %.c $(DEPS)
7         $(CC) -c -o $@ $<
8
9 soho-sigint-wifi: $(OBJ)
10         $(CC) -o $@ $^ $(CFLAGS) $(LIBS)
11
12 clean:
13         rm -rf *.o 
14         rm -rf soho-sigint-wifi