wfb-ng/Makefile

24 lines
309 B
Makefile
Raw Normal View History

2017-01-23 04:37:26 -04:00
LDFLAGS=-lrt -lpcap
CPPFLAGS=-Wall
2017-01-23 04:37:26 -04:00
all: rx tx
%.o: %.c *.h
gcc -c -o $@ $< $(CPPFLAGS)
%.o: %.cpp *.hpp *.h
g++ -std=c++11 -c -o $@ $< $(CPPFLAGS)
rx: rx.o radiotap.o fec.o wifibroadcast.o
2017-01-23 04:37:26 -04:00
g++ -o $@ $^ $(LDFLAGS)
tx: tx.o fec.o wifibroadcast.o
2017-01-23 04:37:26 -04:00
g++ -o $@ $^ $(LDFLAGS)
clean:
rm -f rx tx *~ *.o