diff options
author | obrien <obrien@FreeBSD.org> | 2000-10-13 12:22:47 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-10-13 12:22:47 +0000 |
commit | b3faafb8e29a8843dd2ba3df69b4e0191381b1aa (patch) | |
tree | 0c313084e75c8be920a7c18172d9879289832515 | |
parent | c864b99df07d23e141f3dd756850c6aee7d731f3 (diff) | |
download | FreeBSD-src-b3faafb8e29a8843dd2ba3df69b4e0191381b1aa.zip FreeBSD-src-b3faafb8e29a8843dd2ba3df69b4e0191381b1aa.tar.gz |
Style tweaks.
-rw-r--r-- | gnu/usr.bin/gperf/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/gnu/usr.bin/gperf/Makefile b/gnu/usr.bin/gperf/Makefile index 50a1197..1d9ccd8 100644 --- a/gnu/usr.bin/gperf/Makefile +++ b/gnu/usr.bin/gperf/Makefile @@ -2,19 +2,16 @@ GPROFDIR= ${.CURDIR}/../../../contrib/gperf +.PATH: ${GPROFDIR}/src ${GPROFDIR}/lib ${GPROFDIR}/doc + SUBDIR= doc PROG= gperf -MAN1= gperf.1 - -CXXFLAGS+= -I${GPROFDIR}/lib -I${.CURDIR} - SRCS= bool-array.cc gen-perf.cc hash-table.cc iterator.cc key-list.cc \ list-node.cc main.cc new.cc options.cc read-line.cc trace.cc \ vectors.cc version.cc SRCS+= hash.cc getopt.c getopt1.c +CXXFLAGS+= -I${GPROFDIR}/lib -I${.CURDIR} + .include <bsd.prog.mk> -.PATH: ${GPROFDIR}/src -.PATH: ${GPROFDIR}/lib -.PATH: ${GPROFDIR}/doc |