Added wifi sniffer basics
[soho-sigint.git] / client-wifi / disect5 / Makefile
diff --git a/client-wifi/disect5/Makefile b/client-wifi/disect5/Makefile
new file mode 100644 (file)
index 0000000..4f6961a
--- /dev/null
@@ -0,0 +1,14 @@
+CFLAGS= -std=gnu99
+DEPS = endian.h 
+LIBS=$(LDFLAGS) -L. -lpcap 
+OBJ = soho-sigint-wifi.o radiotap.o
+
+%.o: %.c $(DEPS)
+       $(CC) -c -o $@ $<
+
+soho-sigint-wifi: $(OBJ)
+       $(CC) -o $@ $^ $(CFLAGS) $(LIBS)
+
+clean:
+       rm -rf *.o 
+       rm -rf soho-sigint-wifi