Annotation of embedaddon/libpdel/net/test/Makefile, revision 1.1

1.1     ! misho       1: # $Id: Makefile,v 1.3 2004/06/03 21:17:30 archie Exp $
        !             2: 
        !             3: PREFIX?=       /usr/local
        !             4: PROGS=         arptest iftest
        !             5: CFLAGS+=       -I${PREFIX}/include
        !             6: LDFLAGS+=      -L${PREFIX}/lib -lpdel -lcrypto -lssl -lnetgraph \
        !             7:                -lradius -lexpat -pthread
        !             8: 
        !             9: all:   ${PROGS}
        !            10: 
        !            11: clean cleandir:
        !            12:        rm -f ${PROGS}
        !            13: 
        !            14: ${PROG}:       ${PROG}.c
        !            15:        cc ${CFLAGS} ${.ALLSRC} -o ${.TARGET}
        !            16: 
        !            17: .include "../../Makefile.inc"

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