1 #
2 # Makefile for the linux i386-specific parts of the memory manager.
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 definition is now in the main makefile...
9
10 all: io.o
11
12 CFLAGS +=
13 O_TARGET := io.o
14 O_OBJS :=
15 M_OBJS :=
16
17 SUBDIRS := $(SUBDIRS) arch/s390/drivers/block arch/s390/drivers/char \
18 arch/s390/drivers/misc arch/s390/drivers/net
19 MOD_SUB_DIRS += ./net
20
21 O_OBJS := block/s390-block.o \
22 char/s390-char.o \
23 misc/s390-misc.o \
24 net/s390-net.o
25
26 io.o: $(O_OBJS)
27
28 block/s390-block.o: dummy
29 $(MAKE) -C block
30
31 char/s390-char.o: dummy
32 $(MAKE) -C char
33
34 misc/s390-misc.o: dummy
35 $(MAKE) -C misc
36
37 net/s390-net.o: dummy
38 $(MAKE) -C net
39
40 include $(TOPDIR)/Rules.make
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.