summaryrefslogtreecommitdiff
path: root/usr.bin/sup/supscan/Makefile
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-17 12:58:18 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-17 12:58:18 +0000
commita7d9a9f977ac45e3464248c5a106d10c7cbf022e (patch)
treefc11371e73c88a25c2cfb8f27de8c724d5449274 /usr.bin/sup/supscan/Makefile
parent2bf2db031769651e994404718316fa00c27c65a1 (diff)
SRCS are sources, and when they are sources, make depend will work like it should
Diffstat (limited to 'usr.bin/sup/supscan/Makefile')
-rw-r--r--usr.bin/sup/supscan/Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/usr.bin/sup/supscan/Makefile b/usr.bin/sup/supscan/Makefile
index c4fcff11332..2863593cce2 100644
--- a/usr.bin/sup/supscan/Makefile
+++ b/usr.bin/sup/supscan/Makefile
@@ -1,12 +1,10 @@
-# $Id: Makefile,v 1.1 1995/12/16 11:47:07 deraadt Exp $
-
-.PATH: ${.CURDIR}/../src
+# $Id: Makefile,v 1.2 1995/12/17 12:58:17 deraadt Exp $
PROG= supscan
NOMAN=
-SRCS= supscan.o stree.o scan.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= supscan.c stree.c scan.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
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>