summaryrefslogtreecommitdiff
path: root/usr.bin/tcfs/Makefile.inc
diff options
context:
space:
mode:
authorNiels Provos <provos@cvs.openbsd.org>2000-06-18 22:07:26 +0000
committerNiels Provos <provos@cvs.openbsd.org>2000-06-18 22:07:26 +0000
commit48893562fdfa12c4f376d2556da18e817a34484f (patch)
tree033e9aaa47f5617ba6ffbcf7e071ffb8f8f71b07 /usr.bin/tcfs/Makefile.inc
parent47bc7a26b81967e77c0f021899f1544966df67e2 (diff)
Initial import of very much rewritten TCFS userland. This code is still
nasty.
Diffstat (limited to 'usr.bin/tcfs/Makefile.inc')
-rw-r--r--usr.bin/tcfs/Makefile.inc11
1 files changed, 11 insertions, 0 deletions
diff --git a/usr.bin/tcfs/Makefile.inc b/usr.bin/tcfs/Makefile.inc
new file mode 100644
index 00000000000..bc62c39a36d
--- /dev/null
+++ b/usr.bin/tcfs/Makefile.inc
@@ -0,0 +1,11 @@
+CFLAGS+= -I${.CURDIR}/..
+
+.include <bsd.obj.mk>
+
+.if exists(${.CURDIR}/../lib/${__objdir})
+LDADD+= -L${.CURDIR}/../lib/${__objdir} -ltcfs
+DPADD+= ${.CURDIR}/../lib/${__objdir}/libtcfs.a
+.else
+LDADD+= -L${.CURDIR}/../lib -ltcfs
+DPADD+= ${.CURDIR}/../lib/libtcfs.a
+.endif