diff options
author | matt mooney <mfm@muteddisk.com> | 2010-09-23 08:50:45 +0200 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2010-10-21 02:17:31 +0200 |
commit | dea2aff876c004cccf29549242c93b208787aa64 (patch) | |
tree | 79f7349e3b1fc01ebf1da81fea9397f000c1f06b /arch/m68knommu/platform/coldfire/Makefile | |
parent | m68knommu: Fix MCFUART_TXFIFOSIZE for m548x. (diff) | |
download | linux-dea2aff876c004cccf29549242c93b208787aa64.tar.xz linux-dea2aff876c004cccf29549242c93b208787aa64.zip |
m68knommu: change to new flag variables
Replace EXTRA_CFLAGS with ccflags-y and EXTRA_AFLAGS with asflags-y.
Signed-off-by: matt mooney <mfm@muteddisk.com>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68knommu/platform/coldfire/Makefile')
-rw-r--r-- | arch/m68knommu/platform/coldfire/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/m68knommu/platform/coldfire/Makefile b/arch/m68knommu/platform/coldfire/Makefile index df62171d986c..45f501fa4525 100644 --- a/arch/m68knommu/platform/coldfire/Makefile +++ b/arch/m68knommu/platform/coldfire/Makefile @@ -8,8 +8,8 @@ # on the console port whenever a DBG interrupt occurs. You have to # set up you HW breakpoints to trigger a DBG interrupt: # -# EXTRA_CFLAGS += -DTRAP_DBG_INTERRUPT -# EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT +# ccflags-y := -DTRAP_DBG_INTERRUPT +# asflags-y := -DTRAP_DBG_INTERRUPT # asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1 |