diff options
| author | brezak <brezak@NetBSD.org> | 1993-07-10 03:56:10 +0000 |
|---|---|---|
| committer | brezak <brezak@NetBSD.org> | 1993-07-10 03:56:10 +0000 |
| commit | c17cb39f9c447b8ba6946fe6d8d1be6fbd707cce (patch) | |
| tree | f56847d276ace6c06675b2b69d6f6bc832ff8862 /include | |
| parent | 083cf2243a6f2ee50992b2e23856c119dc96331f (diff) | |
Allow SYS_INCLUDES={copies,symlinks} choice in bsd.own.mk.
Diffstat (limited to 'include')
| -rw-r--r-- | include/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/Makefile b/include/Makefile index ce924c0aa80..aa49afbed30 100644 --- a/include/Makefile +++ b/include/Makefile @@ -25,13 +25,12 @@ LDIRS= net netinet netccitt netiso netns nfs sys ufs vm NOOBJ= noobj -# Define SHARED to indicate whether you want symbolic links to the system -# source (``symlinks''), or a separate copy (``copies''); (latter useful -# in environments where it's not possible to keep /sys publicly readable) -SHARED= copies -#SHARED= symlinks +# Change SYS_INCLUDE in bsd.own.mk to "symlinks" if you don't want copies +.if !defined(SYS_INCLUDE) +SYS_INCLUDE= copies +.endif -install: beforeinstall _PROGSUBDIR ${SHARED} +install: beforeinstall _PROGSUBDIR ${SYS_INCLUDE} @echo installing ${FILES} @-for i in ${FILES}; do \ cmp -s $$i ${DESTDIR}/usr/include/$$i || \ |
