diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-17 12:58:18 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-17 12:58:18 +0000 |
commit | a7d9a9f977ac45e3464248c5a106d10c7cbf022e (patch) | |
tree | fc11371e73c88a25c2cfb8f27de8c724d5449274 /usr.bin/sup/supfilesrv/Makefile | |
parent | 2bf2db031769651e994404718316fa00c27c65a1 (diff) |
SRCS are sources, and when they are sources, make depend will work like it should
Diffstat (limited to 'usr.bin/sup/supfilesrv/Makefile')
-rw-r--r-- | usr.bin/sup/supfilesrv/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/usr.bin/sup/supfilesrv/Makefile b/usr.bin/sup/supfilesrv/Makefile index 787b17daba5..16a1ba7185d 100644 --- a/usr.bin/sup/supfilesrv/Makefile +++ b/usr.bin/sup/supfilesrv/Makefile @@ -1,12 +1,10 @@ -# $Id: Makefile,v 1.1 1995/12/16 11:47:06 deraadt Exp $ - -.PATH: ${.CURDIR}/../src +# $Id: Makefile,v 1.2 1995/12/17 12:58:14 deraadt Exp $ PROG= supfilesrv MAN= supservers.8 -SRCS= supfilesrv.o scan.o scm.o scmio.o stree.o log.o supmsg.o \ - atoo.o errmsg.o expand.o ffilecopy.o filecopy.o nxtarg.o \ - path.o quit.o run.o salloc.o skipto.o vprintf.o netcryptvoid.c +SRCS= supfilesrv.c scan.c scm.c scmio.c stree.c log.c supmsg.c \ + atoo.c errmsg.c expand.c ffilecopy.c filecopy.c nxtarg.c \ + path.c quit.c run.c salloc.c skipto.c vprintf.c netcryptvoid.c LDADD+= -lutil -lcrypt DPADD+= ${LIBUTIL} BINOWN= root @@ -14,5 +12,6 @@ BINGRP= daemon BINMODE=555 BINDIR= /usr/bin CFLAGS+=-I${.CURDIR}/../src +.PATH: ${.CURDIR}/../src .include <bsd.prog.mk> |