2006-11-08 20:36:56 +01:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
DESTDIR =
|
|
|
|
VPATH = @srcdir@ @srcdir@/..
|
|
|
|
srcdir = @srcdir@
|
|
|
|
objdir = .
|
|
|
|
srcroot = $(srcdir)/../..
|
|
|
|
objroot = $(objdir)/../..
|
2008-08-15 00:00:47 +02:00
|
|
|
top_srcdir = @top_srcdir@
|
2006-11-08 20:36:56 +01:00
|
|
|
|
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
|
|
|
|
|
|
|
host_alias = @host_alias@
|
|
|
|
target_alias = @target_alias@
|
|
|
|
|
|
|
|
bindir = @bindir@
|
|
|
|
libdir = @libdir@
|
|
|
|
tooldir = $(exec_prefix)/$(target_alias)
|
|
|
|
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
|
|
|
|
# Multilib support variables.
|
|
|
|
# TOP is used instead of MULTI{BUILD,SRC}TOP.
|
|
|
|
MULTIDIRS =
|
|
|
|
MULTISUBDIR =
|
|
|
|
|
|
|
|
SHELL = /bin/sh
|
|
|
|
|
2008-08-15 00:00:47 +02:00
|
|
|
mkinstalldirs = $(SHELL) $(top_srcdir)/../../mkinstalldirs
|
|
|
|
|
2006-11-08 20:36:56 +01:00
|
|
|
CC = @CC@
|
|
|
|
|
|
|
|
AS = @AS@
|
|
|
|
AR = @AR@
|
|
|
|
LD = @LD@
|
|
|
|
RANLIB = @RANLIB@
|
|
|
|
|
|
|
|
OBJDUMP = `if [ -f ${objroot}/../binutils/objdump ] ; \
|
|
|
|
then echo ${objroot}/../binutils/objdump ; \
|
|
|
|
else t='$(program_transform_name)'; echo objdump | sed -e $$t ; fi`
|
|
|
|
OBJCOPY = `if [ -f ${objroot}/../binutils/objcopy ] ; \
|
|
|
|
then echo ${objroot}/../binutils/objcopy ; \
|
|
|
|
else t='$(program_transform_name)'; echo objcopy | sed -e $$t ; fi`
|
|
|
|
|
|
|
|
OBJS =
|
|
|
|
CFLAGS =
|
|
|
|
SCRIPTS =
|
|
|
|
|
|
|
|
# Here is all of the simulator stuff
|
|
|
|
SIM_SCRIPTS =
|
|
|
|
SIM_LDFLAGS =
|
|
|
|
SIM_BSP = libsim.a
|
|
|
|
SIM_CRT0 = crt0.o
|
2011-12-18 19:41:20 +01:00
|
|
|
SIM_OBJS = syscalls.o clear_cache_range.o
|
2006-11-08 20:36:56 +01:00
|
|
|
SIM_TEST = sim-test
|
|
|
|
SIM_INSTALL = install-sim
|
|
|
|
|
2008-08-15 00:00:47 +02:00
|
|
|
# Here is all of the development board stuff
|
2012-12-17 18:44:38 +01:00
|
|
|
BOARD_SCRIPTS = bfin-common-sc.ld bfin-common-mc.ld bfin-common-mc0.ld \
|
2010-10-15 22:32:11 +02:00
|
|
|
bf504.ld bf506.ld \
|
2009-09-16 17:59:40 +02:00
|
|
|
bf512.ld bf514.ld bf516.ld bf518.ld \
|
2008-08-15 00:00:47 +02:00
|
|
|
bf522.ld bf523.ld bf524.ld bf525.ld bf526.ld bf527.ld \
|
|
|
|
bf531.ld bf532.ld bf533.ld \
|
|
|
|
bf534.ld bf536.ld bf537.ld \
|
|
|
|
bf538.ld bf539.ld \
|
|
|
|
bf542.ld bf544.ld bf547.ld bf548.ld bf549.ld \
|
2010-10-16 19:06:55 +02:00
|
|
|
bf561.ld bf561a.ld bf561b.ld bf561m.ld \
|
2012-12-17 18:44:38 +01:00
|
|
|
bf606.ld bf606c0.ld bf606c1.ld bf606m.ld \
|
|
|
|
bf607.ld bf607c0.ld bf607c1.ld bf607m.ld \
|
|
|
|
bf608.ld bf608c0.ld bf608c1.ld bf608m.ld \
|
|
|
|
bf609.ld bf609c0.ld bf609c1.ld bf609m.ld \
|
2010-10-16 19:06:55 +02:00
|
|
|
bf592.ld
|
2008-08-15 00:00:47 +02:00
|
|
|
BOARD_LDFLAGS =
|
2011-12-18 19:41:20 +01:00
|
|
|
BOARD_BSP = libbfinbsp.a
|
2008-08-15 00:00:47 +02:00
|
|
|
BOARD_CRT0S = basiccrt.o basiccrts.o
|
|
|
|
BOARD_CRT0S += basiccrt561.o basiccrt561s.o basiccrt561b.o
|
2014-09-22 17:26:46 +02:00
|
|
|
# BOARD_CRT0S += basiccrt60x.o basiccrt60xs.o basiccrt60xc1.o
|
2012-01-24 05:41:10 +01:00
|
|
|
BOARD_OBJS = clear_cache_range.o _exit.o
|
2008-08-15 00:00:47 +02:00
|
|
|
BOARD_TEST =
|
|
|
|
BOARD_INSTALL = install-board
|
|
|
|
|
2006-11-08 20:36:56 +01:00
|
|
|
# Host specific makefile fragment comes in here.
|
|
|
|
@host_makefile_frag@
|
|
|
|
|
2008-08-15 00:00:47 +02:00
|
|
|
INCLUDES += -I$(srcdir)/include
|
2006-11-08 20:36:56 +01:00
|
|
|
#
|
|
|
|
# build a test program for each target board. Just trying to get
|
|
|
|
# it to link is a good test, so we ignore all the errors for now.
|
|
|
|
#
|
2008-08-15 00:00:47 +02:00
|
|
|
all: ${SIM_CRT0} ${SIM_BSP} ${BOARD_CRT0S} ${BOARD_BSP}
|
2006-11-08 20:36:56 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# here's where we build the board support packages for each target
|
|
|
|
#
|
2011-12-18 19:41:20 +01:00
|
|
|
${BOARD_BSP}: ${OBJS} ${BOARD_OBJS}
|
|
|
|
${AR} ${ARFLAGS} $@ $^
|
|
|
|
${RANLIB} $@
|
|
|
|
|
2006-11-08 20:36:56 +01:00
|
|
|
${SIM_BSP}: ${OBJS} ${SIM_OBJS}
|
|
|
|
${AR} ${ARFLAGS} ${SIM_BSP} ${SIM_OBJS} ${OBJS}
|
|
|
|
${RANLIB} ${SIM_BSP}
|
|
|
|
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
2008-08-15 00:00:47 +02:00
|
|
|
crt0.o: crt0.S
|
|
|
|
|
|
|
|
basiccrt.o: basiccrt.S
|
2009-10-08 18:35:34 +02:00
|
|
|
ifeq (,$(findstring mcpu=,$(CFLAGS)))
|
|
|
|
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf532-any -o $@ -c $<
|
|
|
|
else
|
2008-08-15 00:00:47 +02:00
|
|
|
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -o $@ -c $<
|
2009-10-08 18:35:34 +02:00
|
|
|
endif
|
2008-08-15 00:00:47 +02:00
|
|
|
|
|
|
|
basiccrts.o: basiccrt.S
|
2009-10-08 18:35:34 +02:00
|
|
|
ifeq (,$(findstring mcpu=,$(CFLAGS)))
|
|
|
|
$(CC) -D__BFIN_SDRAM $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf532-any -o $@ -c $<
|
|
|
|
else
|
2008-08-15 00:00:47 +02:00
|
|
|
$(CC) -D__BFIN_SDRAM $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -o $@ -c $<
|
2009-10-08 18:35:34 +02:00
|
|
|
endif
|
2008-08-15 00:00:47 +02:00
|
|
|
|
|
|
|
basiccrt561.o: basiccrt.S
|
|
|
|
ifneq (,$(findstring mcpu=bf532-none,$(CFLAGS)))
|
|
|
|
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf561-none -o $@ -c $<
|
|
|
|
else
|
|
|
|
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf561-any -o $@ -c $<
|
|
|
|
endif
|
|
|
|
|
|
|
|
basiccrt561s.o: basiccrt.S
|
|
|
|
ifneq (,$(findstring mcpu=bf532-none,$(CFLAGS)))
|
|
|
|
$(CC) -D__BFIN_SDRAM $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf561-none -o $@ -c $<
|
|
|
|
else
|
|
|
|
$(CC) -D__BFIN_SDRAM $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf561-any -o $@ -c $<
|
|
|
|
endif
|
|
|
|
|
|
|
|
basiccrt561b.o: basiccrt.S
|
|
|
|
ifneq (,$(findstring mcpu=bf532-none,$(CFLAGS)))
|
|
|
|
$(CC) -D__ADSPBF561_COREB__ $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf561-none -o $@ -c $<
|
|
|
|
else
|
|
|
|
$(CC) -D__ADSPBF561_COREB__ $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf561-any -o $@ -c $<
|
|
|
|
endif
|
2006-11-08 20:36:56 +01:00
|
|
|
|
2012-12-17 18:44:38 +01:00
|
|
|
basiccrt60x.o: basiccrt.S
|
|
|
|
ifneq (,$(findstring mcpu=bf532-none,$(CFLAGS)))
|
|
|
|
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf608-none -o $@ -c $<
|
|
|
|
else
|
|
|
|
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf608-any -o $@ -c $<
|
|
|
|
endif
|
|
|
|
|
|
|
|
basiccrt60xs.o: basiccrt.S
|
|
|
|
ifneq (,$(findstring mcpu=bf532-none,$(CFLAGS)))
|
|
|
|
$(CC) -D__BFIN_SDRAM $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf608-none -o $@ -c $<
|
|
|
|
else
|
|
|
|
$(CC) -D__BFIN_SDRAM $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf608-any -o $@ -c $<
|
|
|
|
endif
|
|
|
|
|
|
|
|
basiccrt60xc1.o: basiccrt.S
|
|
|
|
ifneq (,$(findstring mcpu=bf532-none,$(CFLAGS)))
|
|
|
|
$(CC) -D__ADSPBF60x_CORE1__ $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf608-none -o $@ -c $<
|
|
|
|
else
|
|
|
|
$(CC) -D__ADSPBF60x_CORE1__ $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -mcpu=bf608-any -o $@ -c $<
|
|
|
|
endif
|
|
|
|
|
2006-11-08 20:36:56 +01:00
|
|
|
clean mostlyclean:
|
2008-08-15 00:00:47 +02:00
|
|
|
rm -f a.out core *.i *.o ${SIM_BSP} ${BOARD_BSP}
|
2006-11-08 20:36:56 +01:00
|
|
|
|
|
|
|
distclean maintainer-clean realclean: clean
|
|
|
|
rm -f Makefile config.status *~
|
|
|
|
|
|
|
|
.PHONY: install info install-info clean-info
|
2008-08-15 00:00:47 +02:00
|
|
|
install: ${SIM_INSTALL} ${BOARD_INSTALL}
|
2006-11-08 20:36:56 +01:00
|
|
|
|
|
|
|
install-sim:
|
2008-08-15 00:00:47 +02:00
|
|
|
for x in ${SIM_CRT0} ${SIM_BSP} ${SIM_SCRIPTS}; do \
|
2011-03-27 05:40:00 +02:00
|
|
|
${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x || exit $$?; \
|
2008-08-15 00:00:47 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
install-board:
|
|
|
|
for x in ${BOARD_CRT0S} ${BOARD_BSP}; do \
|
2011-03-27 05:40:00 +02:00
|
|
|
${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x || exit $$?; \
|
2008-08-15 00:00:47 +02:00
|
|
|
done
|
|
|
|
-if [ -z "${MULTISUBDIR}" ]; then \
|
|
|
|
for x in ${BOARD_SCRIPTS}; do \
|
|
|
|
${INSTALL_DATA} ${srcdir}/$$x $(DESTDIR)${tooldir}/lib/$$x; \
|
|
|
|
done; \
|
|
|
|
${mkinstalldirs} ${DESTDIR}${tooldir}/include; \
|
|
|
|
for i in ${srcdir}/include/*.h; do \
|
|
|
|
${INSTALL_DATA} $$i ${DESTDIR}${tooldir}/include/`basename $$i`; \
|
|
|
|
done; \
|
|
|
|
${mkinstalldirs} ${DESTDIR}${tooldir}/include/sys; \
|
|
|
|
for i in ${srcdir}/include/sys/*.h; do \
|
|
|
|
${INSTALL_DATA} $$i ${DESTDIR}${tooldir}/include/sys/`basename $$i`; \
|
|
|
|
done; \
|
|
|
|
else true; fi
|
2006-11-08 20:36:56 +01:00
|
|
|
|
|
|
|
doc:
|
|
|
|
info:
|
|
|
|
install-info:
|
|
|
|
clean-info:
|
|
|
|
|
|
|
|
Makefile: Makefile.in config.status @host_makefile_frag_path@
|
|
|
|
$(SHELL) config.status
|
|
|
|
|
|
|
|
config.status: configure
|
|
|
|
$(SHELL) config.status --recheck
|