Diff for /embedaddon/hping2/Makefile.in between versions 1.1.1.1 and 1.1.1.1.2.1

version 1.1.1.1, 2012/02/21 22:11:37 version 1.1.1.1.2.1, 2013/07/22 00:14:48
Line 6 Line 6
 # $date: Sun Jul 25 17:56:15 MET DST 1999$   # $date: Sun Jul 25 17:56:15 MET DST 1999$ 
 # $rev: 3$   # $rev: 3$ 
   
CC?= gccCC= gcc
 AR=/usr/bin/ar  AR=/usr/bin/ar
 RANLIB=/usr/bin/ranlib  RANLIB=/usr/bin/ranlib
CCOPT= -Wall @CFLAGS@ @PCAP_INCLUDE@CCOPT= -O2 -Wall @PCAP_INCLUDE@
 DEBUG= -g  DEBUG= -g
 #uncomment the following if you need libpcap based build under linux  #uncomment the following if you need libpcap based build under linux
 #(not raccomanded)  #(not raccomanded)
Line 43  libars.a: $(ARSOBJ) Line 43  libars.a: $(ARSOBJ)
         $(RANLIB) $@          $(RANLIB) $@
   
 hping2: byteorder.h $(OBJ)  hping2: byteorder.h $(OBJ)
        $(CC) -o hping2 $(CCOPT) $(OBJ) $(PCAP) @SOLARISLIB@        $(CC) -o hping2 $(CCOPT) $(DEBUG) $(OBJ) $(PCAP) @SOLARISLIB@
         @echo          @echo
         ./hping2 -v          ./hping2 -v
         @echo "use \`make strip' to strip hping2 binary"          @echo "use \`make strip' to strip hping2 binary"
Line 53  byteorder.h: Line 53  byteorder.h:
         ./configure          ./configure
   
 .c.o:  .c.o:
        $(CC) -c $(CCOPT) $(COMPILE_TIME) $<        $(CC) -c $(CCOPT) $(DEBUG) $(COMPILE_TIME) $<
   
 clean:  clean:
         rm -rf hping2 *.o *.a          rm -rf hping2 *.o *.a

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.1.2.1


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