diff options
author | Will Thompson <will@willthompson.co.uk> | 2020-05-16 15:53:22 +0100 |
---|---|---|
committer | Will Thompson <will@willthompson.co.uk> | 2020-06-05 09:24:02 +0100 |
commit | 2b7de5136fbf9185f222de092afa99dc8e0ce1d7 (patch) | |
tree | 341bbba97f21b76a3d5461503168d0bbb6f289fc /Makefile | |
parent | 3ac734ab948998e1386ac6f6738c68eeac9f03fd (diff) |
Factor out BustlePcapReader
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -24,9 +24,15 @@ SCALABLE_ICONS = \ all: $(BINARIES) $(MANPAGE) $(DESKTOP_FILE) $(APPDATA_FILE) $(SCALABLE_ICONS) -BUSTLE_PCAP_SOURCES = c-sources/pcap-monitor.c c-sources/bustle-pcap.c +BUSTLE_PCAP_SOURCES = \ + c-sources/pcap-reader.c \ + c-sources/pcap-monitor.c \ + c-sources/bustle-pcap.c BUSTLE_PCAP_GENERATED_HEADERS = dist/build/autogen/version.h -BUSTLE_PCAP_HEADERS = c-sources/pcap-monitor.h $(BUSTLE_PCAP_GENERATED_HEADERS) +BUSTLE_PCAP_HEADERS = \ + c-sources/pcap-reader.h \ + c-sources/pcap-monitor.h \ + $(BUSTLE_PCAP_GENERATED_HEADERS) bustle-pcap.1: dist/build/bustle-pcap help2man --output=$@ --no-info --name='Generate D-Bus logs for bustle' $< |