summaryrefslogtreecommitdiffstats
path: root/drivers/ieee1394/Makefile
blob: f2ce588974d316dde8d6a7bc18bc061b22d5bc88 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#
# Makefile for the Linux IEEE 1394 implementation
#
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
#

SUB_DIRS     :=
MOD_SUB_DIRS := $(SUB_DIRS)
ALL_SUB_DIRS := $(SUB_DIRS)

MOD_LIST_NAME := IEEE1394_MODULES

L_TARGET := ieee1394.a
L_OBJS   :=
LX_OBJS  :=
M_OBJS   :=
MX_OBJS  :=
MI_OBJS  :=
MIX_OBJS :=
O_OBJS   :=
OX_OBJS  :=

ifeq ($(CONFIG_IEEE1394),y)
L_OBJS  += ieee1394.o hosts.o highlevel.o csr.o
O_TARGET = ieee1394.o
O_OBJS  += ieee1394_core.o ieee1394_transactions.o
OX_OBJS += ieee1394_syms.o
else
  ifeq ($(CONFIG_IEEE1394),m)
  M_OBJS  += ieee1394.o
  O_TARGET = ieee1394.o
  O_OBJS  += ieee1394_core.o ieee1394_transactions.o hosts.o highlevel.o csr.o
  OX_OBJS += ieee1394_syms.o
  endif
endif

ifeq ($(CONFIG_IEEE1394_PCILYNX),y)
L_OBJS += pcilynx.o
else
  ifeq ($(CONFIG_IEEE1394_PCILYNX),m)
  M_OBJS += pcilynx.o
  endif
endif

ifeq ($(CONFIG_IEEE1394_AIC5800),y)
L_OBJS += aic5800.o
else
  ifeq ($(CONFIG_IEEE1394_AIC5800),m)
  M_OBJS += aic5800.o
  endif
endif

ifeq ($(CONFIG_IEEE1394_OHCI1394),y)
L_OBJS += ohci1394.o
else
  ifeq ($(CONFIG_IEEE1394_OHCI1394),m)
  M_OBJS += ohci1394.o
  endif
endif


ifeq ($(CONFIG_IEEE1394_RAWIO),y)
L_OBJS += raw1394.o
else
  ifeq ($(CONFIG_IEEE1394_RAWIO),m)
  M_OBJS += raw1394.o
  endif
endif


include $(TOPDIR)/Rules.make