diff options
author | Marek Vasut | 2010-10-20 21:04:13 +0200 |
---|---|---|
committer | Marek Vasut | 2010-10-22 01:37:59 +0200 |
commit | d2942ee5e354138bfa2778e2ab35e480b9f1ec33 (patch) | |
tree | 5edfda7c471780ab0e010d0597e5ba326eabfd9e /board/palmld/Makefile | |
parent | 3c43ca2ae2a7ee28eca49369ff11da4996eedad6 (diff) |
PXA: palmld: Fix for reloc
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Diffstat (limited to 'board/palmld/Makefile')
-rw-r--r-- | board/palmld/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/board/palmld/Makefile b/board/palmld/Makefile index bcb014db62d..0cca8ab9ec2 100644 --- a/board/palmld/Makefile +++ b/board/palmld/Makefile @@ -24,17 +24,15 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).a COBJS := palmld.o -SOBJS := lowlevel_init.o -SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) +SRCS := $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) -SOBJS := $(addprefix $(obj),$(SOBJS)) -$(LIB): $(obj).depend $(OBJS) $(SOBJS) - $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS) +$(LIB): $(obj).depend $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) clean: - rm -f $(SOBJS) $(OBJS) + rm -f $(OBJS) distclean: clean rm -f $(LIB) core *.bak $(obj).depend |