View | Details | Raw Unified | Return to bug 14217
Collapse All | Expand All

(-)modules/Makefile (-6 / +63 lines)
Lines 2-16 Link Here
2
2
3
# XXX present but broken: atapi ip_mroute_mod joy pcic
3
# XXX present but broken: atapi ip_mroute_mod joy pcic
4
4
5
SUBDIR=	aha al ax ccd cd9660 coda dm fdesc fxp if_disc if_ppp if_sl if_tun \
5
SUBDIR=	aha \
6
	ipfw kernfs md mfs mii msdos mx nfs ntfs nullfs pn portal procfs rl \
6
	al \
7
	sf sis sk ste ti tl umapfs union vn vr wb xl
7
	ax \
8
	ccd \
9
	cd9660 \
10
	coda \
11
	dm \
12
	ext2fs \
13
	fdesc \
14
	fxp \
15
	if_disc \
16
	if_ppp \
17
	if_sl \
18
	if_tun \
19
	ipfw \
20
	kernfs \
21
	md \
22
	mfs \
23
	mii \
24
	msdos \
25
	mx \
26
	nfs \
27
	ntfs \
28
	nullfs \
29
	pn \
30
	portal \
31
	procfs \
32
	rl \
33
	sf \
34
	sis \
35
	sk \
36
	ste \
37
	ti \
38
	tl \
39
	umapfs \
40
	union \
41
	vn \
42
	vr \
43
	wb \
44
	xl
8
45
9
# XXX some of these can move to the general case when de-i386'ed
46
# XXX some of these can move to the general case when de-i386'ed
10
.if ${MACHINE_ARCH} == "i386"
47
.if ${MACHINE_ARCH} == "i386"
11
SUBDIR+=amr bktr coff fpu gnufpu ibcs2 linux mlx ncp nwfs splash streams \
48
SUBDIR+=amr \
12
	svr4 syscons vesa vinum
49
	bktr \
13
SUBDIR+=ugen uhid ukbd ulpt ums umodem umass
50
	coff \
51
	fpu \
52
	gnufpu \
53
	ibcs2 \
54
	linux \
55
	mlx \
56
	ncp \
57
	nwfs \
58
	splash \
59
	streams \
60
	svr4 \
61
	syscons \
62
	vesa \
63
	vinum
64
SUBDIR+=ugen \
65
	uhid \
66
	ukbd \
67
	ulpt \
68
	ums \
69
	umodem \
70
	umass
14
.endif
71
.endif
15
72
16
.include <bsd.subdir.mk>
73
.include <bsd.subdir.mk>
(-)modules/ext2fs/Makefile (+23 lines)
Line 0 Link Here
1
# $FreeBSD: src/sys/modules/nfs/Makefile,v 1.12 1999/08/28 00:47:29 peter Exp $
2
3
.PATH: ${.CURDIR}/../../gnu/ext2fs
4
KMOD=	ext2fs
5
SRCS=	ext2_alloc.c ext2_balloc.c ext2_inode.c ext2_inode_cnv.c \
6
	ext2_linux_balloc.c ext2_linux_ialloc.c ext2_lookup.c \
7
	ext2_subr.c ext2_vfsops.c ext2_vnops.c \
8
	opt_ddb.h opt_suiddir.h opt_quota.h
9
NOMAN=
10
VFS_KLD=
11
CFLAGS+= -DEXT2FS
12
CLEANFILES= opt_ddb.h opt_suiddir.h opt_quota.h 
13
14
opt_ddb.h:
15
	touch ${.TARGET}
16
17
opt_suiddir.h:
18
	touch ${.TARGET}
19
20
opt_quota.h:
21
	touch ${.TARGET}
22
23
.include <bsd.kmod.mk>

Return to bug 14217