1# $OpenBSD: Makefile,v 1.13 2021/09/21 18:36:09 bluhm 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} == "sparc64" 29CFLAGS+= -DSUN_CYLCHECK -DSUN_AAT0 30.endif 31 32.ifdef NOPIC 33CFLAGS+= -DSTATICLINKING 34.endif 35 36.PATH: ${.CURDIR}/../../../sbin/disklabel 37.include <bsd.prog.mk> 38