In an attempt to make the new info rules bootstrap themselves, make

the rules conditional on NOINFO not being defined, just like NOMAN.
This commit is contained in:
Joshua Peck Macdonald 1997-01-11 10:51:36 +00:00
parent d5c3a37026
commit 38a1b9404b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=21535

View File

@ -21,6 +21,7 @@ INFOSECTION?= Miscellaneous
IFILENS= ${INFO:S/$/.info/g}
.if !defined(NOINFO)
.if !defined(NOINFOCOMPRESS)
IFILES= ${INFO:S/$/.info.gz/g}
all: ${IFILES} _SUBDIR
@ -28,6 +29,9 @@ all: ${IFILES} _SUBDIR
IFILES= ${IFILENS}
all: ${IFILES} _SUBDIR
.endif
.else
all:
.endif
GZIPCMD?= gzip
@ -68,9 +72,13 @@ depend: _SUBDIR
clean: _SUBDIR
rm -f ${INFO:S/$/.info*/g} Errs errs mklog ${CLEANFILES}
.if !defined(NOINFO)
install: ${INSTALLINFODIRS} _SUBDIR
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${IFILES} ${DESTDIR}${BINDIR}
.else
install:
.endif
.if !target(maninstall)
maninstall: _SUBDIR