db1e9e9ea9
Use -c, not ${COPY}, to install `dir'. ${COPY} should never be used to install source files. The source might be lost if the default is overridden.
15 lines
197 B
Makefile
15 lines
197 B
Makefile
#
|
|
# Makefile for INFO files
|
|
#
|
|
|
|
INFOFILES= dir
|
|
|
|
install:
|
|
${INSTALL} -c -g ${BINGRP} -o ${BINOWN} -m 444 ${INFOFILES} \
|
|
${DESTDIR}${INFODIR}
|
|
|
|
clean cleandir obj:
|
|
@echo -n
|
|
|
|
.include <bsd.prog.mk>
|