20 lines
381 B
Makefile
20 lines
381 B
Makefile
bin_PROGRAMS = wireless_monitor
|
|
|
|
wireless_monitor_SOURCES = \
|
|
main.c \
|
|
monitor.c \
|
|
capture.c \
|
|
frame_parser.c
|
|
|
|
wireless_monitor_CFLAGS = \
|
|
$(LIBPCAP_CFLAGS) \
|
|
$(LIBNL_CFLAGS) \
|
|
-I$(top_srcdir)/src
|
|
|
|
wireless_monitor_LDADD = \
|
|
$(LIBPCAP_LIBS) \
|
|
$(LIBNL_LIBS)
|
|
|
|
# Include headers in distribution
|
|
include_HEADERS = monitor.h capture.h frame_parser.h
|