diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-08-21 06:48:21 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-08-21 06:48:21 +0000 |
commit | e3fad46ed52ec3fa73a0ce301c2f79a681f39122 (patch) | |
tree | ab5890d92a3d58c814f5433ff85d6090849ef775 /usr.sbin | |
parent | b56d6e366f8f3ac5aaa4f722b389523a3321dd27 (diff) |
Use .PATH, not VPATH
Don't add -g to CFLAGS
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pcmciad/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pcmciad/Makefile b/usr.sbin/pcmciad/Makefile index 9888d35fd66..daf5a770080 100644 --- a/usr.sbin/pcmciad/Makefile +++ b/usr.sbin/pcmciad/Makefile @@ -1,9 +1,9 @@ -# $Id: Makefile,v 1.2 1996/05/01 20:33:02 hvozda Exp $ +# $Id: Makefile,v 1.3 1996/08/21 06:48:20 tholo Exp $ SRCS= pcmciad.c pcmcia_conf.c -VPATH= ${.CURDIR}/../../sys/dev/pcmcia +.PATH: ${.CURDIR}/../../sys/dev/pcmcia -CFLAGS+= -g -Wmissing-prototypes -I${.CURDIR}/../../sys +CFLAGS+=-Wmissing-prototypes -I${.CURDIR}/../../sys PROG= pcmciad MAN= pcmciad.8 |