1check: clean process_pcap compare_md5
2
3clean:
4	@echo "*** Cleaning decapsulated pcap files..."
5	-rm -vf *.cap.output
6
7process_pcap:
8	@echo "*** Processing icmp_ipip_tunnel.cap..."
9	../../src/ipdecap -i icmp_ipip_tunnel.cap -o icmp_ipip_tunnel.cap.output
10	@echo "*** Processing ipip_corrupted_header_length.pcapng..."
11	../../src/ipdecap -i ipip_corrupted_header_length.pcapng -o ipip_corrupted_header_length.pcapng.output
12
13compare_md5:
14	@echo "*** Comparing checksums..."
15	@MD5SUM@ -c ipip.md5
16
17
18.PHONY = check
19