diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2001-01-10 05:27:25 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2001-01-10 05:27:25 +0000 |
commit | c9c06167e7933d93a6e396174c68abf242294abb (patch) | |
tree | d9a8bb30663e9a3405a1ef37ffb62bc14b9f019f /arch/mips64/arc | |
parent | f79e8cc3c34e4192a3e5ef4cc9c6542fdef703c0 (diff) |
Merge with Linux 2.4.0-test12.
Diffstat (limited to 'arch/mips64/arc')
-rw-r--r-- | arch/mips64/arc/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/mips64/arc/Makefile b/arch/mips64/arc/Makefile index 141093f78..eb805e260 100644 --- a/arch/mips64/arc/Makefile +++ b/arch/mips64/arc/Makefile @@ -3,15 +3,15 @@ # L_TARGET = arclib.a -L_OBJS = init.o printf.o tree.o env.o cmdline.o misc.o time.o \ - file.o identify.o +obj-y := init.o printf.o tree.o env.o cmdline.o misc.o time.o file.o \ + identify.o ifndef CONFIG_SGI_IP27 -L_OBJS += console.o + obj-y += console.o endif -ifdef CONFIG_ARC_MEMORY -L_OBJS += memory.o -endif +obj-$(CONFIG_ARC_MEMORY) += memory.o + +L_OBJS := $(obj-y) include $(TOPDIR)/Rules.make |