Home | History | Annotate | Line # | Download | only in quotaon
Makefile revision 1.7
      1  1.3   mycroft #	from: @(#)Makefile	8.1 (Berkeley) 6/6/93
      2  1.7  christos #	$NetBSD: Makefile,v 1.7 2011/03/06 23:24:33 christos Exp $
      3  1.1       cgd 
      4  1.6    bouyer .include <bsd.own.mk>
      5  1.7  christos WARNS	?= 4
      6  1.7  christos 
      7  1.1       cgd PROG=	quotaon
      8  1.6    bouyer SRCS=	quotaon.c
      9  1.4       cgd MAN=	quotaon.8
     10  1.1       cgd MLINKS=	quotaon.8 quotaoff.8
     11  1.1       cgd LINKS=	${BINDIR}/quotaon ${BINDIR}/quotaoff
     12  1.1       cgd 
     13  1.7  christos .PATH:  ${NETBSDSRCDIR}/usr.bin/quota
     14  1.7  christos SRCS+=  quotautil.c
     15  1.7  christos CPPFLAGS+=-I${NETBSDSRCDIR}/usr.bin/quota
     16  1.7  christos 
     17  1.6    bouyer CPPFLAGS+=-I${NETBSDSRCDIR}/sys
     18  1.6    bouyer DPADD=	${LIBPROP}
     19  1.6    bouyer LDADD=	-lprop
     20  1.6    bouyer 
     21  1.6    bouyer .PATH:	${NETBSDSRCDIR}/sys/ufs/ufs
     22  1.6    bouyer SRCS+=	quota2_prop.c
     23  1.6    bouyer 
     24  1.1       cgd .include <bsd.prog.mk>
     25