Home | History | Annotate | Line # | Download | only in modules
Makefile revision 1.25
      1 #	$NetBSD: Makefile,v 1.25 2009/02/05 17:32:10 haad Exp $
      2 
      3 # For all platforms
      4 
      5 SUBDIR=		accf_dataready
      6 SUBDIR+=	accf_httpready
      7 SUBDIR+=	adosfs
      8 SUBDIR+=	aio
      9 SUBDIR+=	ccd
     10 SUBDIR+=	cd9660
     11 SUBDIR+=	cgd
     12 SUBDIR+=	coda
     13 SUBDIR+=	coda5
     14 SUBDIR+=	compat
     15 SUBDIR+=	compat_ossaudio
     16 SUBDIR+=	coredump
     17 SUBDIR+=	efs
     18 SUBDIR+=	ext2fs
     19 SUBDIR+=	exec_script
     20 SUBDIR+=	fdesc
     21 SUBDIR+=	ffs
     22 SUBDIR+=	filecore
     23 SUBDIR+=	fss
     24 SUBDIR+=	hfs
     25 SUBDIR+=	kernfs
     26 SUBDIR+=	ksem
     27 SUBDIR+=	layerfs
     28 SUBDIR+=	lfs
     29 SUBDIR+=	mfs
     30 SUBDIR+=	msdos
     31 SUBDIR+=	nfs
     32 SUBDIR+=	nfsserver
     33 SUBDIR+=	ntfs
     34 SUBDIR+=	null
     35 SUBDIR+=	overlay
     36 SUBDIR+=	portal
     37 SUBDIR+=	ppp_bsdcomp
     38 SUBDIR+=	ppp_deflate
     39 SUBDIR+=	procfs
     40 SUBDIR+=	ptyfs
     41 SUBDIR+=	puffs
     42 SUBDIR+=	putter
     43 SUBDIR+=	miniroot
     44 SUBDIR+=	smbfs
     45 SUBDIR+=	sysvbfs
     46 SUBDIR+=	tmpfs
     47 SUBDIR+=	udf
     48 SUBDIR+=	umap
     49 SUBDIR+=	union
     50 SUBDIR+=	vnd
     51 .if (defined(NOTYET))
     52 SUBDIR+=	unionfs
     53 .endif
     54 
     55 # Machine dependent section
     56 .if ${MACHINE_ARCH} != "alpha"
     57 SUBDIR+=	exec_elf32
     58 .endif
     59 
     60 .if ${MACHINE_ARCH} == "alpha" || \
     61     ${MACHINE_ARCH} == "sparc64" || \
     62     ${MACHINE_ARCH} == "x86_64"
     63 SUBDIR+=	exec_elf64
     64 .endif
     65 
     66 .if ${MACHINE} == "amd64"
     67 SUBDIR+=	azalia
     68 SUBDIR+=	compat_linux
     69 SUBDIR+=	compat_linux32
     70 SUBDIR+=	compat_netbsd32
     71 SUBDIR+=	drm
     72 SUBDIR+=	i915drm
     73 .endif
     74 
     75 .if ${MACHINE} == "i386"
     76 SUBDIR+=	azalia
     77 SUBDIR+=	compat_freebsd
     78 SUBDIR+=	compat_ibcs2
     79 SUBDIR+=	compat_linux
     80 SUBDIR+=	compat_svr4
     81 SUBDIR+=	drm
     82 SUBDIR+=	exec_aout
     83 SUBDIR+=	i915drm
     84 SUBDIR+=	radeondrm
     85 .endif
     86 
     87 .include <bsd.own.mk>
     88 
     89 # we need our device mapper for LVM
     90 .if (${MKLVM} != "no")
     91 SUBDIR+= dm
     92 .endif
     93 
     94 .include <bsd.subdir.mk>
     95