Annotation of embedaddon/hping2/utils/Makefile, revision 1.1.1.1

1.1       misho       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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>