1 #
2 # Makefile for the linux kernel.
3 #
4 # Note! Dependencies are done automagically by 'make dep', which also
5 # removes any old dependencies. DON'T put your own dependencies here
6 # unless it's something special (ie not a .c file).
7 #
8 # Note 2! The CFLAGS definitions are now in the main makefile...
9
10 O_TARGET := partitions.o
11
12 export-objs := check.o
13
14 obj-y := check.o
15
16 obj-$(CONFIG_ACORN_PARTITION) += acorn.o
17 obj-$(CONFIG_AMIGA_PARTITION) += amiga.o
18 obj-$(CONFIG_ATARI_PARTITION) += atari.o
19 obj-$(CONFIG_MAC_PARTITION) += mac.o
20 obj-$(CONFIG_MSDOS_PARTITION) += msdos.o
21 obj-$(CONFIG_OSF_PARTITION) += osf.o
22 obj-$(CONFIG_SGI_PARTITION) += sgi.o
23 obj-$(CONFIG_SUN_PARTITION) += sun.o
24 obj-$(CONFIG_ULTRIX_PARTITION) += ultrix.o
25 obj-$(CONFIG_IBM_PARTITION) += ibm.o
26
27 include $(TOPDIR)/Rules.make
28
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.