diff options
| author | Greg Ungerer <gerg@snapgear.com> | 2003-05-25 08:10:19 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2003-05-25 08:10:19 -0700 |
| commit | 25ae47653b38a7a3a1a239e4ffe5b585ce7f751e (patch) | |
| tree | 02bbae0c0ba870136c9023302fc0e25aafffdecb | |
| parent | a5e9cfa6b4ed9cef39baea5700922612269f2acf (diff) | |
[PATCH] rework timer code used for different m68knommu/ColdFire CPU's
Rework the m68knommu/ColdFire/5307 Makefile to build the correct
timer code for each of the different ColdFire CPU types.
| -rw-r--r-- | arch/m68knommu/platform/5307/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/arch/m68knommu/platform/5307/Makefile b/arch/m68knommu/platform/5307/Makefile index cf63cb941ab5..b4d5e43e0fd2 100644 --- a/arch/m68knommu/platform/5307/Makefile +++ b/arch/m68knommu/platform/5307/Makefile @@ -16,8 +16,13 @@ ifdef CONFIG_FULLDEBUG AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 endif -obj-$(CONFIG_COLDFIRE) += entry.o timers.o vectors.o -obj-$(CONFIG_M5307) += config.o +obj-$(CONFIG_COLDFIRE) += entry.o vectors.o +obj-$(CONFIG_M5206) += timers.o +obj-$(CONFIG_M5206e) += timers.o +obj-$(CONFIG_M5249) += timers.o +obj-$(CONFIG_M5272) += timers.o +obj-$(CONFIG_M5307) += config.o timers.o +obj-$(CONFIG_M5407) += timers.o ifeq ($(CONFIG_M5307),y) extra-y := $(BOARD)/crt0_$(MODEL).o |
