Deleted Added
full compact
Makefile.inc1 (42103) Makefile.inc1 (42128)
1#
1#
2# $Id: Makefile.inc1,v 1.49 1998/12/21 09:41:26 dillon Exp $
2# $Id: Makefile.inc1,v 1.50 1998/12/27 21:11:07 phk Exp $
3#
4# Make command line options:
5# -DCLOBBER will remove /usr/include
6# -DMAKE_KERBEROS4 to build KerberosIV
7# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
8# -DNOCLEAN do not clean at all
9# -DNOTOOLS do not rebuild any tools first
10# -DNOCRYPT will prevent building of crypt versions
3#
4# Make command line options:
5# -DCLOBBER will remove /usr/include
6# -DMAKE_KERBEROS4 to build KerberosIV
7# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
8# -DNOCLEAN do not clean at all
9# -DNOTOOLS do not rebuild any tools first
10# -DNOCRYPT will prevent building of crypt versions
11# -DNOLKM do not build loadable kernel modules
12# -DNOPROFILE do not build profiled libraries
13# -DNOSECURE do not go into secure subdir
14# -DNOGAMES do not go into games subdir
15# -DNOSHARE do not go into share subdir
16# -DNOINFO do not make or install info files
17# -DNOLIBC_R do not build libc_r.
18# LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
19

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

77SUBDIR+= usr.bin
78.endif
79.if exists(usr.sbin)
80SUBDIR+= usr.sbin
81.endif
82.if exists(secure) && !defined(NOCRYPT) && !defined(NOSECURE)
83SUBDIR+= secure
84.endif
11# -DNOPROFILE do not build profiled libraries
12# -DNOSECURE do not go into secure subdir
13# -DNOGAMES do not go into games subdir
14# -DNOSHARE do not go into share subdir
15# -DNOINFO do not make or install info files
16# -DNOLIBC_R do not build libc_r.
17# LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
18

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

76SUBDIR+= usr.bin
77.endif
78.if exists(usr.sbin)
79SUBDIR+= usr.sbin
80.endif
81.if exists(secure) && !defined(NOCRYPT) && !defined(NOSECURE)
82SUBDIR+= secure
83.endif
85.if exists(lkm) && !defined(NOLKM) && ${OBJFORMAT} == "aout"
86SUBDIR+= lkm
87.endif
88
89# etc must be last for "distribute" to work
90.if exists(etc)
91SUBDIR+= etc
92.endif
93
94# These are last, since it is nice to at least get the base system
95# rebuilt before you do them.

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

739_strfile= games/fortune/strfile
740.endif
741.if !defined(NOPERL)
742_perl= gnu/usr.bin/perl/miniperl
743.endif
744.if !defined(NOSHARE) && exists(${.CURDIR}/share)
745_scrnmaps= share/syscons/scrnmaps
746.endif
84
85# etc must be last for "distribute" to work
86.if exists(etc)
87SUBDIR+= etc
88.endif
89
90# These are last, since it is nice to at least get the base system
91# rebuilt before you do them.

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

735_strfile= games/fortune/strfile
736.endif
737.if !defined(NOPERL)
738_perl= gnu/usr.bin/perl/miniperl
739.endif
740.if !defined(NOSHARE) && exists(${.CURDIR}/share)
741_scrnmaps= share/syscons/scrnmaps
742.endif
747.if !defined(NOLKM) && exists(${.CURDIR}/lkm) && ${OBJFORMAT} == "aout"
748_linux= lkm/linux
749.endif
750.if ${MACHINE_ARCH} == i386
751_kldlinux= sys/modules/linux
752.endif
753.if ${OBJFORMAT} == "aout"
754_netboot= sys/${MACHINE}/boot/netboot
755.endif
756
757BTMAKEFLAGS= ${MK_FLAGS} -D_BUILD_TOOLS

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

887 ${XMAKE} -DNOINFO -DNOMAN -f Makefile.inc1 libraries
888 @echo
889 @echo "--------------------------------------------------------------"
890 @echo ">>> Building legacy rtld"
891 @echo "--------------------------------------------------------------"
892 cd ${.CURDIR}/libexec/rtld-aout; \
893 ${XMAKE} -DNOMAN depend; ${XMAKE} -DNOMAN all;
894 @echo
743.if ${MACHINE_ARCH} == i386
744_kldlinux= sys/modules/linux
745.endif
746.if ${OBJFORMAT} == "aout"
747_netboot= sys/${MACHINE}/boot/netboot
748.endif
749
750BTMAKEFLAGS= ${MK_FLAGS} -D_BUILD_TOOLS

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

880 ${XMAKE} -DNOINFO -DNOMAN -f Makefile.inc1 libraries
881 @echo
882 @echo "--------------------------------------------------------------"
883 @echo ">>> Building legacy rtld"
884 @echo "--------------------------------------------------------------"
885 cd ${.CURDIR}/libexec/rtld-aout; \
886 ${XMAKE} -DNOMAN depend; ${XMAKE} -DNOMAN all;
887 @echo
895.if exists(${.CURDIR}/lkm) && !defined(NOLKM)
896 @echo "--------------------------------------------------------------"
888 @echo "--------------------------------------------------------------"
897 @echo ">>> Building legacy lkms"
898 @echo "--------------------------------------------------------------"
899 cd ${.CURDIR}/lkm; \
900 ${XMAKE} -DNOMAN depend; ${XMAKE} -DNOMAN all;
901 @echo
902.endif
903 @echo "--------------------------------------------------------------"
904 @echo ">>> Building legacy boot"
905 @echo "--------------------------------------------------------------"
906 cd ${.CURDIR}/sys/${MACHINE}/boot && \
907 ${XMAKE} -DNOMAN -B obj depend; ${XMAKE} -DNOMAN all;
908.endif
909
910#
911# Install aout versions of things that provide legacy support when all the

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

931 cd ${.CURDIR}/kerberosIV/lib; ${MAKE} -B -DNOMAN -DNOINFO install
932.endif
933 @echo
934 @echo "--------------------------------------------------------------"
935 @echo ">>> Installing legacy rtld"
936 @echo "--------------------------------------------------------------"
937 cd ${.CURDIR}/libexec/rtld-aout; ${MAKE} -DNOMAN install
938 @echo
889 @echo ">>> Building legacy boot"
890 @echo "--------------------------------------------------------------"
891 cd ${.CURDIR}/sys/${MACHINE}/boot && \
892 ${XMAKE} -DNOMAN -B obj depend; ${XMAKE} -DNOMAN all;
893.endif
894
895#
896# Install aout versions of things that provide legacy support when all the

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

916 cd ${.CURDIR}/kerberosIV/lib; ${MAKE} -B -DNOMAN -DNOINFO install
917.endif
918 @echo
919 @echo "--------------------------------------------------------------"
920 @echo ">>> Installing legacy rtld"
921 @echo "--------------------------------------------------------------"
922 cd ${.CURDIR}/libexec/rtld-aout; ${MAKE} -DNOMAN install
923 @echo
939.if exists(${.CURDIR}/lkm) && !defined(NOLKM)
940 @echo "--------------------------------------------------------------"
941 @echo ">>> Installing legacy lkms"
942 @echo "--------------------------------------------------------------"
943 cd ${.CURDIR}/lkm; ${MAKE} -DNOMAN install
944 @echo
945.endif
946.if ${MACHINE_ARCH} != "alpha"
947 @echo "--------------------------------------------------------------"
948 @echo ">>> Installing legacy boot"
949 @echo "--------------------------------------------------------------"
950 cd ${.CURDIR}/sys/${MACHINE}/boot && ${MAKE} -DNOMAN install
951.endif
952.endif
953

--- 42 unchanged lines hidden ---
924.if ${MACHINE_ARCH} != "alpha"
925 @echo "--------------------------------------------------------------"
926 @echo ">>> Installing legacy boot"
927 @echo "--------------------------------------------------------------"
928 cd ${.CURDIR}/sys/${MACHINE}/boot && ${MAKE} -DNOMAN install
929.endif
930.endif
931

--- 42 unchanged lines hidden ---