blob: a83e1f9138e878579e1bf68912d6c58534e09dc6 (
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
|
#
# drivers/char/pcmcia/Makefile
#
# Makefile for the Linux PCMCIA char device drivers.
#
SUB_DIRS :=
MOD_SUB_DIRS := $(SUB_DIRS)
ALL_SUB_DIRS := $(SUB_DIRS)
O_TARGET := pcmcia_char.o
obj-y :=
obj-m :=
obj-n :=
obj- :=
obj-$(CONFIG_PCMCIA_SERIAL_CS) += serial_cs.o
obj-$(CONFIG_PCMCIA_SERIAL_CB) += serial_cb.o
O_OBJS := $(obj-y)
OX_OBJS :=
M_OBJS := $(obj-m)
MX_OBJS :=
include $(TOPDIR)/Rules.make
|