diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-06-23 22:46:14 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-06-23 22:46:14 +0000 |
commit | 6df0b771ebcb3566414373edef220a0f6a17efbf (patch) | |
tree | 060687da02a3942a5d62fad96ed7361473923eca /gnu/usr.sbin | |
parent | 3aaf059f30fb2abae9da3dd76d1cdde748e7fed7 (diff) |
switch to installing source manuals (base part)
discussed with lots of people, tested by naddy@,
"move fast" deraadt@
Diffstat (limited to 'gnu/usr.sbin')
-rw-r--r-- | gnu/usr.sbin/mkhybrid/mkhybrid/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/usr.sbin/mkhybrid/mkhybrid/Makefile b/gnu/usr.sbin/mkhybrid/mkhybrid/Makefile index 7c9438fb85b..a58965d9ebf 100644 --- a/gnu/usr.sbin/mkhybrid/mkhybrid/Makefile +++ b/gnu/usr.sbin/mkhybrid/mkhybrid/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2008/03/08 15:36:12 espie Exp $ +# $OpenBSD: Makefile,v 1.5 2011/06/23 22:46:12 schwarze Exp $ # NOTE: The mkhybrid distrib also makes an "mkisofs" which is the same binary # linked. When we know mkhybrid makes distrib CDs ok we should modify this @@ -8,6 +8,7 @@ PROG= mkhybrid MAN= mkhybrid.8 BINDIR= /usr/sbin +CLEANFILES+= mkhybrid.8 .PATH: ${.CURDIR}/../src ${.CURDIR}/../src/libhfs_iso ${.CURDIR}/../src/libfile SRCS= data.c block.c low.c lfile.c btree.c node.c record.c lvolume.c \ @@ -24,4 +25,7 @@ CFLAGS+=-DSYSTEM_ID_DEFAULT=\"OpenBSD\" -DAPPLE_HYB -DVANILLA_AUTOCONF \ write.o: write.c ${CC} ${CFLAGS} -O0 -c ${.CURDIR}/../src/write.c +mkhybrid.8: mkhybrid.8tbl + cp ${.ALLSRC} ${.TARGET} + .include <bsd.prog.mk> |