Deleted Added
full compact
Makefile (211501) Makefile (211690)
1# $FreeBSD: head/sys/modules/Makefile 211501 2010-08-19 11:31:03Z anchie $
1# $FreeBSD: head/sys/modules/Makefile 211690 2010-08-23 06:13:29Z imp $
2
3.include <bsd.own.mk>
4
5SUBDIR= ${_3dfx} \
6 ${_3dfx_linux} \
7 ${_aac} \
8 accf_data \
9 accf_dns \

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

318 ${_wpifw} \
319 ${_x86bios} \
320 ${_xe} \
321 xfs \
322 xl \
323 ${_zfs} \
324 zlib \
325
2
3.include <bsd.own.mk>
4
5SUBDIR= ${_3dfx} \
6 ${_3dfx_linux} \
7 ${_aac} \
8 accf_data \
9 accf_dns \

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

318 ${_wpifw} \
319 ${_x86bios} \
320 ${_xe} \
321 xfs \
322 xl \
323 ${_zfs} \
324 zlib \
325
326.if ${MACHINE_CPUARCH} != "powerpc" && ${MACHINE_ARCH} != "arm" && \
327 ${MACHINE_ARCH} != "mips"
326.if ${MACHINE_CPUARCH} != "powerpc" && ${MACHINE_CPUARCH} != "arm" && \
327 ${MACHINE_CPUARCH} != "mips"
328_syscons= syscons
329_vpo= vpo
330.endif
331
332.if ${MACHINE_ARCH} != "arm" && ${MACHINE_ARCH} != "mips"
333# no BUS_SPACE_UNSPECIFIED
334# No barrier instruction support (specific to this driver)
335_sym= sym

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

355_netgraph= netgraph
356.endif
357
358.if ${MK_PF} != "no" || defined(ALL_MODULES)
359_pf= pf
360_pflog= pflog
361.endif
362
328_syscons= syscons
329_vpo= vpo
330.endif
331
332.if ${MACHINE_ARCH} != "arm" && ${MACHINE_ARCH} != "mips"
333# no BUS_SPACE_UNSPECIFIED
334# No barrier instruction support (specific to this driver)
335_sym= sym

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

355_netgraph= netgraph
356.endif
357
358.if ${MK_PF} != "no" || defined(ALL_MODULES)
359_pf= pf
360_pflog= pflog
361.endif
362
363.if ${MACHINE_ARCH} == "i386"
363.if ${MACHINE_CPUARCH} == "i386"
364# XXX some of these can move to the general case when de-i386'ed
365# XXX some of these can move now, but are untested on other architectures.
366_3dfx= 3dfx
367_3dfx_linux= 3dfx_linux
368_agp= agp
369_aic= aic
370_amd= amd
371_an= an

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

495.elif ${MACHINE} == "pc98"
496_canbepm= canbepm
497_canbus= canbus
498_pmc= pmc
499_snc= snc
500.endif
501.endif
502
364# XXX some of these can move to the general case when de-i386'ed
365# XXX some of these can move now, but are untested on other architectures.
366_3dfx= 3dfx
367_3dfx_linux= 3dfx_linux
368_agp= agp
369_aic= aic
370_amd= amd
371_an= an

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

495.elif ${MACHINE} == "pc98"
496_canbepm= canbepm
497_canbus= canbus
498_pmc= pmc
499_snc= snc
500.endif
501.endif
502
503.if ${MACHINE_ARCH} == "amd64"
503.if ${MACHINE_CPUARCH} == "amd64"
504_aac= aac
505_acpi= acpi
506.if ${MK_CRYPT} != "no" || defined(ALL_MODULES)
507_aesni= aesni
508.endif
509_agp= agp
510_an= an
511_amdsbwd= amdsbwd

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

585_wi= wi
586_wpi= wpi
587_wpifw= wpifw
588.if ${MK_ZFS} != "no" || defined(ALL_MODULES)
589_zfs= zfs
590.endif
591.endif
592
504_aac= aac
505_acpi= acpi
506.if ${MK_CRYPT} != "no" || defined(ALL_MODULES)
507_aesni= aesni
508.endif
509_agp= agp
510_an= an
511_amdsbwd= amdsbwd

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

585_wi= wi
586_wpi= wpi
587_wpifw= wpifw
588.if ${MK_ZFS} != "no" || defined(ALL_MODULES)
589_zfs= zfs
590.endif
591.endif
592
593.if ${MACHINE_ARCH} == "ia64"
593.if ${MACHINE_CPUARCH} == "ia64"
594_aac= aac
595_aic= aic
596_an= an
597_arcnet= arcnet
598_asr= asr
599_bktr= bktr
600_cardbus= cardbus
601_cbb= cbb

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

642.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
643_opensolaris= opensolaris
644.endif
645.if ${MK_ZFS} != "no" || defined(ALL_MODULES)
646_zfs= zfs
647.endif
648.endif
649
594_aac= aac
595_aic= aic
596_an= an
597_arcnet= arcnet
598_asr= asr
599_bktr= bktr
600_cardbus= cardbus
601_cbb= cbb

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

642.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
643_opensolaris= opensolaris
644.endif
645.if ${MK_ZFS} != "no" || defined(ALL_MODULES)
646_zfs= zfs
647.endif
648.endif
649
650.if ${MACHINE_ARCH} == "sparc64"
650.if ${MACHINE_CPUARCH} == "sparc64"
651_auxio= auxio
652_em= em
653_epic= epic
654_i2c= i2c
655_igb= igb
656.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
657_opensolaris= opensolaris
658.endif

--- 26 unchanged lines hidden ---
651_auxio= auxio
652_em= em
653_epic= epic
654_i2c= i2c
655_igb= igb
656.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
657_opensolaris= opensolaris
658.endif

--- 26 unchanged lines hidden ---