diff options
author | Joseph Koshy <jkoshy@FreeBSD.org> | 2005-04-19 14:40:50 +0000 |
---|---|---|
committer | Joseph Koshy <jkoshy@FreeBSD.org> | 2005-04-19 14:40:50 +0000 |
commit | 38bebdddd16537e971b442425149c6065af7dd2f (patch) | |
tree | dd6385519a2cc00914919a86f1cdc13b38d14ed7 /usr.sbin/pmcstat/Makefile | |
parent | 84a5e4580acea7c8d0fc94c56844cfc154039e14 (diff) |
Remove superfluous CFLAGS additions. Make 'make checkdpadd' work.
Use '?=' for the WARNS line.
Submitted by: ru
Notes
Notes:
svn path=/head/; revision=145278
Diffstat (limited to 'usr.sbin/pmcstat/Makefile')
-rw-r--r-- | usr.sbin/pmcstat/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.sbin/pmcstat/Makefile b/usr.sbin/pmcstat/Makefile index 350c024610a1..8250990bb645 100644 --- a/usr.sbin/pmcstat/Makefile +++ b/usr.sbin/pmcstat/Makefile @@ -5,12 +5,10 @@ PROG= pmcstat MAN= pmcstat.8 -DPADD= ${LIBPMC} +DPADD= ${LIBPMC} ${LIBM} LDADD= -lpmc -lm -WARNS= 6 - -CFLAGS+= -I${.CURDIR}/../../sys -I${.CURDIR}/../../lib/libpmc +WARNS?= 6 SRCS= pmcstat.c |