Makefile revision 1.1
11.1Sdyoung# $Id: Makefile,v 1.1 2011/08/25 19:09:46 dyoung Exp $ 21.1Sdyoung 31.1Sdyoung.include <bsd.own.mk> 41.1Sdyoung 51.1SdyoungLIBPPATH != make -V .OBJDIR -C $(.CURDIR)/../lib 61.1Sdyoung 71.1SdyoungTESTS_C=t_ppath t_proplib 81.1SdyoungSRCS.t_proplib=t_proplib.c personnel.c personnel.h 91.1SdyoungSRCS.t_ppath=t_ppath.c personnel.c personnel.h 101.1SdyoungCPPFLAGS+=-I$(.OBJDIR) 111.1Sdyoung 121.1Sdyoung.SUFFIXES: .plist .h 131.1Sdyoung 141.1Sdyoung.plist.h: 151.1Sdyoung echo "extern const char " ${.TARGET:S,.h$,,} "[];" > ${.TARGET} 161.1Sdyoung 171.1Sdyoung.plist.c: 181.1Sdyoung ${.CURDIR}/plist_to_c ${.TARGET:S,.c$,,} < ${.IMPSRC} > ${.TARGET} 191.1Sdyoung 201.1SdyoungCLEANFILES+=personnel.c personnel.h 211.1Sdyoung 221.1SdyoungLDADD+=-L$(LIBPPATH) -lppath -lprop 231.1SdyoungDPADD+=$(LIBPPATH)/libppath.a 241.1Sdyoung 251.1Sdyoung.include <bsd.test.mk> 261.1Sdyoung.include "../mk/tags.mk" 27