Module Name: src
Committed By: manu
Date: Tue May 3 13:14:10 UTC 2011
Modified Files:
src/lib/libperfuse: Makefile
Log Message:
Fix build (libperfuse is still not built by default, but time is coming)
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libperfuse/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libperfuse/Makefile
diff -u src/lib/libperfuse/Makefile:1.1 src/lib/libperfuse/Makefile:1.2
--- src/lib/libperfuse/Makefile:1.1 Wed Aug 25 07:16:00 2010
+++ src/lib/libperfuse/Makefile Tue May 3 13:14:09 2011
@@ -1,10 +1,13 @@
LIB= perfuse
-LIBDPLIBS+= puffs /usr/src/lib/libpuffs
+LIBDPLIBS+= puffs ${.CURDIR}/../libpuffs
PERFUSE_OPT_DEBUG_FLAGS= -g -DPERFUSE_DEBUG
CFLAGS+= ${PERFUSE_OPT_DEBUG_FLAGS}
+CPPFLAGS+= -I${.CURDIR}
+CPPFLAGS+= -I${NETBSDSRCDIR}/lib/libpuffs
+CPPFLAGS+= -I${NETBSDSRCDIR}/sys -I${ARCHDIR}
SRCS= perfuse.c ops.c subr.c debug.c
MAN= libperfuse.3
WARNS= 4