diff options
Diffstat (limited to 'include/Makefile')
-rw-r--r-- | include/Makefile | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/include/Makefile b/include/Makefile index d7badd7489b1..fe29186bfccd 100644 --- a/include/Makefile +++ b/include/Makefile @@ -57,16 +57,20 @@ LSUBDIRS= cam/ata cam/scsi \ security/mac_mls security/mac_partition \ ufs/ffs ufs/ufs -LSUBSUBDIRS= dev/mpt/mpilib - -.if ${MK_BLUETOOTH} != "no" -LSUBSUBDIRS+= netgraph/bluetooth/include +.if ${MK_USB} != "no" +LSUBDIRS+= dev/usb .endif +LSUBSUBDIRS= dev/mpt/mpilib + .if ${MK_CUSE} != "no" LSUBDIRS+= fs/cuse .endif +.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "powerpc64" +_dev_powermac_nvram= dev/powermac_nvram +.endif + .if ${MK_GSSAPI} != "no" SUBDIR+= gssapi INCS+= gssapi.h @@ -76,18 +80,15 @@ INCS+= gssapi.h INCS+= hesiod.h .endif +.if ${MK_BLUETOOTH} != "no" +LSUBSUBDIRS+= netgraph/bluetooth/include +.endif + # Handle the #define aliases for libiconv .if ${MK_ICONV} == "yes" INCS+= iconv.h .endif - -.if ${MK_USB} != "no" -LSUBDIRS+= dev/usb -.endif - -.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "powerpc64" -_dev_powermac_nvram= dev/powermac_nvram -.endif + # Define SHARED to indicate whether you want symbolic links to the system # source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is |