qt/ledset/WpdPack_4_1_2/Examples-pcap/GNUmakefile

11 lines
315 B
Makefile
Raw Normal View History

2022-08-25 18:43:03 +08:00
# 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;