Deleted Added
full compact
Makefile (267734) Makefile (270187)
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
2# $FreeBSD: stable/10/etc/Makefile 267734 2014-06-22 16:48:21Z gavin $
2# $FreeBSD: stable/10/etc/Makefile 270187 2014-08-19 23:33:51Z ian $
3
4.include <bsd.own.mk>
5
6.if ${MK_SENDMAIL} != "no"
7SUBDIR= sendmail
8.endif
9
10.if ${MK_TESTS} != "no"

--- 158 unchanged lines hidden (view full) ---

169DESTDIR:= ${DESTDIR:C://*:/:g}
170
171afterinstall:
172.if ${MK_MAN} != "no"
173 ${_+_}cd ${.CURDIR}/../share/man; ${MAKE} makedb
174.endif
175
176distribute:
3
4.include <bsd.own.mk>
5
6.if ${MK_SENDMAIL} != "no"
7SUBDIR= sendmail
8.endif
9
10.if ${MK_TESTS} != "no"

--- 158 unchanged lines hidden (view full) ---

169DESTDIR:= ${DESTDIR:C://*:/:g}
170
171afterinstall:
172.if ${MK_MAN} != "no"
173 ${_+_}cd ${.CURDIR}/../share/man; ${MAKE} makedb
174.endif
175
176distribute:
177 ${_+_}cd ${.CURDIR} ; ${MAKE} install DESTDIR=${DISTDIR}/${DISTRIBUTION}
177 # Avoid installing tests here; "make distribution" will do this and
178 # correctly place them in the right location.
179 ${_+_}cd ${.CURDIR} ; ${MAKE} MK_TESTS=no install \
180 DESTDIR=${DISTDIR}/${DISTRIBUTION}
178 ${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}
179
180.include <bsd.endian.mk>
181.if ${TARGET_ENDIANNESS} == "1234"
182CAP_MKDB_ENDIAN?= -l
183PWD_MKDB_ENDIAN?= -L
184.elif ${TARGET_ENDIANNESS} == "4321"
185CAP_MKDB_ENDIAN?= -b

--- 208 unchanged lines hidden ---
181 ${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}
182
183.include <bsd.endian.mk>
184.if ${TARGET_ENDIANNESS} == "1234"
185CAP_MKDB_ENDIAN?= -l
186PWD_MKDB_ENDIAN?= -L
187.elif ${TARGET_ENDIANNESS} == "4321"
188CAP_MKDB_ENDIAN?= -b

--- 208 unchanged lines hidden ---