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