mirror of
https://github.com/svpcom/wfb-ng.git
synced 2025-02-19 07:03:48 -04:00
24 lines
309 B
Makefile
24 lines
309 B
Makefile
|
|
LDFLAGS=-lrt -lpcap
|
|
CPPFLAGS=-Wall
|
|
|
|
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
|
|
g++ -o $@ $^ $(LDFLAGS)
|
|
|
|
|
|
tx: tx.o fec.o wifibroadcast.o
|
|
g++ -o $@ $^ $(LDFLAGS)
|
|
|
|
|
|
clean:
|
|
rm -f rx tx *~ *.o
|
|
|