1 #
2 # Makefile for the Linux IrDA protocol layer.
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 O_TARGET := irda.o
11
12 export-objs := irsyms.o
13
14 obj-y := iriap.o iriap_event.o irlmp.o irlmp_event.o irlmp_frame.o \
15 irlap.o irlap_event.o irlap_frame.o timer.o qos.o irqueue.o \
16 irttp.o irda_device.o irias_object.o crc.o wrapper.o af_irda.o \
17 discovery.o parameters.o irsyms.o
18
19 ifeq ($(CONFIG_IRDA),m)
20 obj-m := $(O_TARGET)
21 endif
22
23 obj-$(CONFIG_IRDA_COMPRESSION) += irlap_comp.o
24 obj-$(CONFIG_PROC_FS) += irproc.o
25 obj-$(CONFIG_SYSCTL) += irsysctl.o
26 obj-$(CONFIG_IRLAN) += irlan/irlan.o
27
28 subdir-$(CONFIG_IRLAN) += irlan
29 subdir-$(CONFIG_IRNET) += irnet
30 subdir-$(CONFIG_IRCOMM) += ircomm
31 subdir-$(CONFIG_IRDA_COMPRESSION) += compressors
32
33 ifeq ($(CONFIG_IRLAN),y)
34 obj-y += irlan/irlan.o
35 endif
36
37 ifeq ($(CONFIG_IRNET),y)
38 obj-y += irnet/irnet.o
39 endif
40
41 ifeq ($(CONFIG_IRDA_DEFLATE),y)
42 obj-y += compressors/irda_deflate.o
43 else
44 ifeq ($(CONFIG_IRDA_DEFLATE),m)
45 MOD_TO_LIST += irda_deflate.o
46 endif
47 endif
48
49 ifeq ($(CONFIG_IRCOMM),y)
50 obj-y += ircomm/ircomm_and_tty.o
51 endif
52
53 include $(TOPDIR)/Rules.make
54
55 tar:
56 tar -cvf /dev/f1 .
57
58
59
60
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.