summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/winpcap/Examples-pcap/GNUmakefile
blob: 9bf82520bbe279f219e929b6a8b25ec1aa86de26 (plain) (blame)
1
2
3
4
5
6
7
8
9
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;