1# 2# Makefile for drivers/telephony 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 9obj-y := 10obj-n := 11obj-m := 12obj- := 13export-objs := phonedev.o ixj.o 14 15obj-$(CONFIG_PHONE) += phonedev.o 16obj-$(CONFIG_PHONE_IXJ) += ixj.o 17obj-$(CONFIG_PHONE_IXJ_PCMCIA) += ixj_pcmcia.o 18 19O_TARGET := telephony.o 20 21include $(TOPDIR)/Rules.make 22 23