Messages in this thread Patch in this message |  | | | From | Tracey Dent <> | | Subject | [PATCH 03/05] Drivers: Char: mwave: Makefile: Makefile clean up | | Date | Sat, 16 Oct 2010 09:26:51 -0400 |
| |
Changed <module>-objs to <module>-y in Makefile and use ccflags-y option.
Signed-off-by: Tracey Dent <tdent48227@gmail.com> --- drivers/char/mwave/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/char/mwave/Makefile b/drivers/char/mwave/Makefile index 754c9e2..26b4fce 100644 --- a/drivers/char/mwave/Makefile +++ b/drivers/char/mwave/Makefile @@ -6,10 +6,10 @@ obj-$(CONFIG_MWAVE) += mwave.o -mwave-objs := mwavedd.o smapi.o tp3780i.o 3780i.o +mwave-y := mwavedd.o smapi.o tp3780i.o 3780i.o # To have the mwave driver disable other uarts if necessary # EXTRA_CFLAGS += -DMWAVE_FUTZ_WITH_OTHER_DEVICES # To compile in lots (~20 KiB) of run-time enablable printk()s for debugging: -EXTRA_CFLAGS += -DMW_TRACE +ccflags-y := -DMW_TRACE -- 1.7.3.1.104.gc752e
|  |