1# $OpenBSD: Makefile,v 1.68 2020/07/21 13:56:08 deraadt Exp $ 2 3PROG= disklabel 4SRCS= disklabel.c dkcksum.c editor.c manual.c 5DPADD= ${LIBUTIL} 6LDADD= -lutil 7MAN= disklabel.8 disklabel.5 8 9CLEANFILES += disklabel.cat8 manual.c 10 11.include <bsd.own.mk> 12 13.ifdef NOMAN 14manual.c: 15 (echo 'const unsigned char manpage[] = {'; \ 16 echo 'no manual' | gzip -9c | hexdump -ve '"0x" 1/1 "%02x,"'; \ 17 echo '};'; echo 'const int manpage_sz = sizeof(manpage);') > manual.c 18.else 19disklabel.cat8: disklabel.8 20 mandoc -Tascii ${.ALLSRC} > ${.TARGET} 21 22manual.c: disklabel.cat8 23 (echo 'const unsigned char manpage[] = {'; \ 24 cat disklabel.cat8 | gzip -9c | hexdump -ve '"0x" 1/1 "%02x,"'; \ 25 echo '};'; echo 'const int manpage_sz = sizeof(manpage);') > manual.c 26.endif 27 28.if ${MACHINE} == "alpha" 29CFLAGS+= -DSEEALSO="\"installboot(8)\"" 30.endif 31 32.if ${MACHINE} == "amd64" || ${MACHINE} == "i386" || \ 33 ${MACHINE} == "octeon" || ${MACHINE} == "loongson" || \ 34 ${MACHINE} == "armv7" || ${MACHINE} == "arm64" || \ 35 ${MACHINE} == "landisk" || ${MACHINE} == "powerpc64" 36CFLAGS+= -DSEEALSO="\"fdisk(8), installboot(8)\"" 37.endif 38 39.if ${MACHINE} == "macppc" 40CFLAGS+= -DSEEALSO="\"fdisk(8), pdisk(8), installboot(8)\"" 41.endif 42 43.if ${MACHINE} == "sparc64" 44CFLAGS+= -DSEEALSO="\"installboot(8)\"" -DSUN_CYLCHECK -DSUN_AAT0 45.endif 46 47.include <bsd.prog.mk> 48