hping2
1: CC=gcc 2: CCOPT=-Wall 3: 4: all: hex2bin 5: 6: hex2bin: hex2bin.c 7: $(CC) $(CCOPT) -o hex2bin hex2bin.c 8: 9: clean: 10: rm -f hex2bin