1# Makefile for the act2000 ISDN device driver
2
3# The target object and module list name.
4
5O_TARGET	:= vmlinux-obj.o
6
7# Multipart objects.
8
9list-multi	:= act2000.o
10act2000-objs	:= module.o capi.o act2000_isa.o
11
12# Each configuration option enables a list of files.
13
14obj-$(CONFIG_ISDN_DRV_ACT2000)	+= act2000.o
15
16include $(TOPDIR)/Rules.make
17
18# Link rules for multi-part drivers.
19
20act2000.o: $(act2000-objs)
21	$(LD) -r -o $@ $(act2000-objs)
22