diff options
Diffstat (limited to '3rdparty/winpcap/Examples-pcap/GNUmakefile')
-rw-r--r-- | 3rdparty/winpcap/Examples-pcap/GNUmakefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3rdparty/winpcap/Examples-pcap/GNUmakefile b/3rdparty/winpcap/Examples-pcap/GNUmakefile new file mode 100644 index 00000000000..9bf82520bbe --- /dev/null +++ b/3rdparty/winpcap/Examples-pcap/GNUmakefile @@ -0,0 +1,10 @@ +# Makefile for cygwin gcc +# Nate Lawson <nate@rootlabs.com> + +SUBDIRS = basic_dump basic_dump_ex iflist pcap_filter pktdump_ex readfile readfile_ex savedump sendpack UDPdump + +all clean install uninstall: ${SUBDIRS} + for subdir in ${SUBDIRS}; do \ + echo "Entering $$subdir"; \ + (cd $$subdir && ${MAKE} $@) \ + done; |