summaryrefslogtreecommitdiffstats
path: root/fs/partitions/Makefile
blob: 2dc58c20dfc3bd5e13e2b04bca13a916594bed78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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