1#
2# Makefile for ACP Modem (Mwave).
3#
4# See the README file in this directory for more info. <paulsch@us.ibm.com>
5#
6# Note! Dependencies are done automagically by 'make dep', which also
7# removes any old dependencies. DON'T put your own dependencies here
8# unless it's something special (ie not a .c file).
9#
10# Note 2! The CFLAGS definitions are now inherited from the
11# parent makes..
12#
13
14# To compile in lots (~20 KiB) of run-time enablable printk()s for debugging:
15EXTRA_CFLAGS += -DMW_TRACE
16
17# To have the mwave driver disable other uarts if necessary
18# EXTRA_CFLAGS += -DMWAVE_FUTZ_WITH_OTHER_DEVICES
19
20O_TARGET := mwave.o
21
22obj-y	:= mwavedd.o smapi.o tp3780i.o 3780i.o
23obj-m	:= $(O_TARGET)
24
25include $(TOPDIR)/Rules.make
26