patch-2.3.14 linux/fs/partitions/Makefile

Next file: linux/fs/partitions/acorn.c
Previous file: linux/fs/partitions/Config.in
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.3.13/linux/fs/partitions/Makefile linux/fs/partitions/Makefile
@@ -0,0 +1,49 @@
+#
+# Makefile for the linux kernel.
+#
+# 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...
+
+O_TARGET := partitions.o
+O_OBJS   := check.o
+
+ifeq ($(CONFIG_ACORN_PARTITION),y)
+O_OBJS += acorn.o
+endif
+
+ifeq ($(CONFIG_AMIGA_PARTITION),y)
+O_OBJS += amiga.o
+endif
+
+ifeq ($(CONFIG_ATARI_PARTITION),y)
+O_OBJS += atari.o
+endif
+
+ifeq ($(CONFIG_MAC_PARTITION),y)
+O_OBJS += mac.o
+endif
+
+ifeq ($(CONFIG_MSDOS_PARTITION),y)
+O_OBJS += msdos.o
+endif
+
+ifeq ($(CONFIG_OSF_PARTITION),y)
+O_OBJS += osf.o
+endif
+
+ifeq ($(CONFIG_SGI_PARTITION),y)
+O_OBJS += sgi.o
+endif
+
+ifeq ($(CONFIG_SUN_PARTITION),y)
+O_OBJS += sun.o
+endif
+
+ifeq ($(CONFIG_ULTRIX_PARTITION),y)
+O_OBJS += ultrix.o
+endif
+
+include $(TOPDIR)/Rules.make

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)