diff options
author | 1996-03-01 08:43:10 +0000 | |
---|---|---|
committer | 1996-03-01 08:43:10 +0000 | |
commit | 6d22feb8de9aefbd1ac5b8f2dabb4f73361f69ec (patch) | |
tree | d451ec9d591cc83c2ee836a9279bdd59d2034a59 | |
parent | Allow "make depend" to work (diff) | |
download | wireguard-openbsd-6d22feb8de9aefbd1ac5b8f2dabb4f73361f69ec.tar.xz wireguard-openbsd-6d22feb8de9aefbd1ac5b8f2dabb4f73361f69ec.zip |
Add gram.c to CLEANFILES
-rw-r--r-- | usr.bin/rdist/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/rdist/Makefile b/usr.bin/rdist/Makefile index 6b03f67847a..0ef82e0437c 100644 --- a/usr.bin/rdist/Makefile +++ b/usr.bin/rdist/Makefile @@ -1,12 +1,11 @@ # from: @(#)Makefile 5.11 (Berkeley) 3/12/91 -# $Id: Makefile,v 1.3 1996/03/01 08:34:55 tholo Exp $ +# $Id: Makefile,v 1.4 1996/03/01 08:43:10 tholo Exp $ PROG= rdist CFLAGS+=-I. -DOS_H=\"os-openbsd.h\" -SRCS= child.c client.c common.c distopt.c docmd.c expand.c isexec.c \ - lookup.c message.c rdist.c rshrcmd.c setargs.c signal.c -OBJS+= gram.o -CLEANFILES=y.tab.h +SRCS= child.c client.c common.c distopt.c docmd.c expand.c gram.y \ + isexec.c lookup.c message.c rdist.c rshrcmd.c setargs.c signal.c +CLEANFILES+=gram.c y.tab.h LDADD= -lcompat DPADD= ${LIBCOMPAT} |