
all:
	@echo "Usage:"
	@echo "  make test     - verify all scripts present"
	@echo "  make install  - ensure all scripts executable"
	@echo ""
	@echo "To build tcpdump-split:"
	@echo "  cd tcpdump-split && ./autogen.sh && ./configure && make"

test:
	$(MAKE) -C scripts test

install:
	$(MAKE) -C scripts test
	$(MAKE) -C scripts install
