Skip to content
Snippets Groups Projects
Commit a38dc3ea authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

TQM8272: fix out-of-tree building


...and add to MAKEALL script

Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
parent 4f805c1e
No related branches found
No related tags found
No related merge requests found
...@@ -306,6 +306,7 @@ LIST_8260=" \ ...@@ -306,6 +306,7 @@ LIST_8260=" \
TQM8260_AC \ TQM8260_AC \
TQM8260_AD \ TQM8260_AD \
TQM8260_AE \ TQM8260_AE \
TQM8272 \
ZPC1900 \ ZPC1900 \
" "
......
# #
# (C) Copyright 2001 # (C) Copyright 2001-2008
# Wolfgang Denk, DENX Software Engineering, wd@denx.de. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
# #
# See file CREDITS for list of people who contributed to this # See file CREDITS for list of people who contributed to this
...@@ -22,19 +22,26 @@ ...@@ -22,19 +22,26 @@
# #
include $(TOPDIR)/config.mk include $(TOPDIR)/config.mk
ifneq ($(OBJTREE),$(SRCTREE))
$(shell mkdir -p $(obj)../tqm8xx/)
endif
LIB = lib$(BOARD).a LIB = $(obj)lib$(BOARD).a
OBJS = $(BOARD).o ../tqm8xx/load_sernum_ethaddr.o COBJS = $(BOARD).o ../tqm8xx/load_sernum_ethaddr.o
$(LIB): .depend $(OBJS) SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
$(AR) crv $@ $(OBJS) OBJS := $(addprefix $(obj),$(COBJS))
SOBJS := $(addprefix $(obj),$(SOBJS))
$(LIB): $(obj).depend $(OBJS)
$(AR) $(ARFLAGS) $@ $(OBJS)
######################################################################### #########################################################################
.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c) # defines $(obj).depend target
$(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@ include $(SRCTREE)/rules.mk
sinclude .depend sinclude $(obj).depend
######################################################################### #########################################################################
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment