head	1.5;
access;
symbols
	dws_pl15i:1.5
	LINUX_0_99_15I:1.1.1.2
	cluster_15h:1.5
	dws_pl15h_ibcs:1.5
	LINUX_0_99_15H:1.1.1.2
	LINUX_0_99_15G:1.1.1.2
	dws_pl15f_cluster_08a:1.3
	dws_pl15f:1.3
	LINUX_0_99_15F:1.1.1.2
	dws_pl15e:1.3
	LINUX_0_99_15E:1.1.1.2
	LINUX_0_99_15D:1.1.1.2
	LINUX_0_99_15C:1.1.1.2
	dws_pl15b:1.3
	LINUX_0_99_15B:1.1.1.2
	dws_pl15a:1.3
	LINUX_0_99_15A:1.1.1.2
	dws_pl15:1.3
	LINUX_0_99_15:1.1.1.2
	LINUX_0_99_14Z:1.1.1.2
	dws_pl14y:1.3
	LINUX_0_99_14Y:1.1.1.2
	dws_pl14x:1.3
	LINUX_0_99_14X:1.1.1.2
	LINUX_0_99_14W:1.1.1.2
	LINUX_0_99_14V:1.1.1.2
	LINUX_0_99_14U:1.1.1.2
	dws_pl14t:1.3
	LINUX_0_99_14T:1.1.1.2
	dws_pl14s:1.1.1.2
	LINUX_0_99_14S:1.1.1.2
	dws_pl14r:1.1.1.2
	LINUX_0_99_14R:1.1.1.2
	dws_pl14q:1.1.1.2
	LINUX_0_99_14Q:1.1.1.2
	dws_pl14p:1.1.1.2
	LINUX_0_99_14P:1.1.1.2
	dws_pl14o:1.1.1.2
	LINUX_0_99_14O:1.1.1.2
	LINUX_0_99_14M:1.1.1.2
	LINUX_0_99_14L:1.1.1.2
	LINUX_0_99_14K:1.1.1.2
	LINUX_0_99_14J:1.1.1.2
	LINUX_0_99_14I:1.1.1.2
	LINUX_0_99_14H:1.1.1.2
	LINUX_0_99_14G:1.1.1.2
	dws_pl14f:1.1.1.1
	LINUX_0_99_14F:1.1.1.1
	dws_pl14e:1.1.1.1
	LINUX_0_99_14E:1.1.1.1
	LINUX_0_99_14D:1.1.1.1
	LINUX_0_99_14C:1.1.1.1
	LINUX_0_99_14B:1.1.1.1
	LINUX_0_99_14A:1.1.1.1
	LINUX_0_99_14:1.1.1.1
	LINUX:1.1.1;
locks; strict;
comment	@# @;


1.5
date	94.02.27.16.47.46;	author dws;	state Exp;
branches;
next	1.4;

1.4
date	94.02.26.22.05.56;	author dws;	state Exp;
branches;
next	1.3;

1.3
date	94.01.22.09.43.19;	author dws;	state Exp;
branches;
next	1.2;

1.2
date	94.01.22.09.06.14;	author dws;	state Exp;
branches;
next	1.1;

1.1
date	93.12.09.16.58.10;	author steinber;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	93.12.09.16.58.11;	author steinber;	state Exp;
branches;
next	1.1.1.2;

1.1.1.2
date	94.01.08.15.51.34;	author steinber;	state Exp;
branches;
next	;


desc
@@


1.5
log
@loadable filesystem modules support
@
text
@#
# Makefile for the linux filesystem.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile...

SUBDIRS = minix ext ext2 msdos proc isofs nfs xiafs hpfs sysv

ifdef CONFIG_MINIX_FS
FS_SUBDIRS := $(FS_SUBDIRS) minix
endif
ifdef CONFIG_EXT_FS
FS_SUBDIRS := $(FS_SUBDIRS) ext
endif
ifdef CONFIG_EXT2_FS
FS_SUBDIRS := $(FS_SUBDIRS) ext2
endif
#ifdef CONFIG_MSDOS_FS
FS_SUBDIRS := $(FS_SUBDIRS) msdos
#endif
ifdef CONFIG_PROC_FS
FS_SUBDIRS := $(FS_SUBDIRS) proc
endif
#ifdef CONFIG_ISO9660_FS
FS_SUBDIRS := $(FS_SUBDIRS) isofs
#endif
ifdef CONFIG_NFS_FS
FS_SUBDIRS := $(FS_SUBDIRS) nfs
endif
ifdef CONFIG_XIA_FS
FS_SUBDIRS := $(FS_SUBDIRS) xiafs
endif
ifdef CONFIG_SYSV_FS
FS_SUBDIRS := $(FS_SUBDIRS) sysv
endif
ifdef CONFIG_HPFS_FS
FS_SUBDIRS := $(FS_SUBDIRS) hpfs
endif


ifdef CONFIG_CHKPNT
BINFMTS := $(BINFMTS) restart.o
endif

.c.s:
	$(CC) $(CFLAGS) -S $<
.c.o:
	$(CC) $(CFLAGS) -c $<
.s.o:
	$(AS) -o $*.o $<

OBJS=	open.o read_write.o inode.o devices.o file_table.o buffer.o super.o \
	block_dev.o stat.o exec.o pipe.o namei.o fcntl.o ioctl.o \
	select.o fifo.o locks.o filesystems.o $(BINFMTS) register.o

all: fs.o filesystems.a

fs.o: $(OBJS)
	$(LD) -r -o fs.o $(OBJS)

filesystems.a: dummy
	rm -f filesystems.a
	set -e; for i in $(FS_SUBDIRS); do \
	  test ! -d $$i || \
	    { $(MAKE) -C $$i; $(AR) rcs filesystems.a $$i/$$i.o; }; done

depend dep:
	$(CPP) -M *.c > .depend
	set -e; for i in $(SUBDIRS); do \
	  test ! -d $$i || $(MAKE) -C $$i dep; done

dummy:

#
# include a dependency file if one exists
#
ifeq (.depend,$(wildcard .depend))
include .depend
endif
@


1.4
log
@Added iBCS emulation support.
@
text
@d21 1
a21 1
ifdef CONFIG_MSDOS_FS
d23 1
a23 1
endif
d27 1
a27 1
ifdef CONFIG_ISO9660_FS
d29 1
a29 1
endif
@


1.3
log
@loadable filesystems (minix) and /proc/filesystems added
@
text
@a42 6
ifdef CONFIG_BINFMT_ELF
BINFMTS := $(BINFMTS) binfmt_elf.o
endif
ifdef CONFIG_BINFMT_COFF
BINFMTS := $(BINFMTS) binfmt_coff.o
endif
@


1.2
log
@checkpoint restart and loop devices added
@
text
@d63 1
a63 1
	select.o fifo.o locks.o filesystems.o $(BINFMTS)
@


1.1
log
@Initial revision
@
text
@d10 1
a10 1
SUBDIRS = minix ext ext2 msdos proc isofs nfs xiafs hpfs
d36 3
d45 7
@


1.1.1.1
log
@LINUX_0_99_14
@
text
@@


1.1.1.2
log
@LINUX_0_99_14G
@
text
@d10 1
a10 1
SUBDIRS = minix ext ext2 msdos proc isofs nfs xiafs hpfs sysv
a35 3
ifdef CONFIG_SYSV_FS
FS_SUBDIRS := $(FS_SUBDIRS) sysv
endif
a42 3
ifdef CONFIG_BINFMT_COFF
BINFMTS := $(BINFMTS) binfmt_coff.o
endif
@
