diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2001-07-20 06:20:32 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-07-20 06:20:32 +0000 |
commit | 90e655ea4e3750a48b8b350adb823f0ace818f21 (patch) | |
tree | fb97d8f0fea8f93b6e8bb70b86e003cf5cbc2b79 /usr.sbin/rrenumd | |
parent | 6161544ca763d8c1432b4b68ab5e84407d048e83 (diff) |
Perform a major cleanup of the usr.sbin Makefiles.
These are not perfectly in agreement with each other style-wise, but they
are orders of orders of magnitude more consistent style-wise than before.
Notes
Notes:
svn path=/head/; revision=80029
Diffstat (limited to 'usr.sbin/rrenumd')
-rw-r--r-- | usr.sbin/rrenumd/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/rrenumd/Makefile b/usr.sbin/rrenumd/Makefile index 17922114fef5..21a948920668 100644 --- a/usr.sbin/rrenumd/Makefile +++ b/usr.sbin/rrenumd/Makefile @@ -11,19 +11,21 @@ # AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT # LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE. +# # $FreeBSD$ PROG= rrenumd +MAN= rrenumd.conf.5 rrenumd.8 SRCS= rrenumd.c parser.y lexer.l -YFLAGS+= -d CFLAGS+= -DINET6 -DIPSEC -I. -I${.CURDIR} +YFLAGS= -d + LDADD= -lipsec -lcompat -ll -ly DPADD= ${LIBIPSEC} ${LIBCOMPAT} ${LIBL} ${LIBY} -MAN= rrenumd.conf.5 rrenumd.8 - -SRCS+=y.tab.h +CLEANFILES= y.tab.h +SRCS+= y.tab.h y.tab.h: parser.y .if defined(YACCDEBUG) @@ -32,5 +34,3 @@ YFLAGS+= -t -v .endif .include <bsd.prog.mk> - -CLEANFILES+= y.tab.h |