diff options
author | ru <ru@FreeBSD.org> | 2001-05-18 13:41:42 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-05-18 13:41:42 +0000 |
commit | 52a9144c8ba73bc2eddb65528bb71790cb72f895 (patch) | |
tree | 7db9bd25b79ae42b42688d711e04b27f120c2402 /bin | |
parent | 50fdd52effcf737a2dcae8320cf8a0aa0d46377e (diff) | |
download | FreeBSD-src-52a9144c8ba73bc2eddb65528bb71790cb72f895.zip FreeBSD-src-52a9144c8ba73bc2eddb65528bb71790cb72f895.tar.gz |
Removed -I${.CURDIR}/.../sys from CFLAGS.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/chio/Makefile | 2 | ||||
-rw-r--r-- | bin/ps/Makefile | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/bin/chio/Makefile b/bin/chio/Makefile index d4b7f56..1720328 100644 --- a/bin/chio/Makefile +++ b/bin/chio/Makefile @@ -1,8 +1,6 @@ # $FreeBSD$ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -CFLAGS+=-I${.CURDIR}/../../sys - PROG= chio SRCS= chio.c diff --git a/bin/ps/Makefile b/bin/ps/Makefile index d5c791c..08ea30b 100644 --- a/bin/ps/Makefile +++ b/bin/ps/Makefile @@ -9,7 +9,7 @@ SRCS= fmt.c keyword.c nlist.c print.c ps.c # keep ps from being an unnecessary load # on large systems. # -CFLAGS+=-I${.CURDIR}/../../sys -DLAZY_PS +CFLAGS+=-DLAZY_PS DPADD= ${LIBM} ${LIBKVM} LDADD= -lm -lkvm #BINGRP= kmem |