forked from Imagelibrary/rtems
2006-03-16 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am, configure.ac: Reflect addition of rm52xx, tx49.
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
2006-03-16 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2006-03-16 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* Makefile.am, configure.ac: Reflect addition of rm52xx, tx49.
|
||||||
* rm52xx/include/rm5231.h, rm52xx/vectorisrs/maxvectors.c,
|
* rm52xx/include/rm5231.h, rm52xx/vectorisrs/maxvectors.c,
|
||||||
rm52xx/vectorisrs/vectorisrs.c, tx49/include/tx4925.h,
|
rm52xx/vectorisrs/vectorisrs.c, tx49/include/tx4925.h,
|
||||||
tx49/include/tx4938.h, tx49/vectorisrs/maxvectors.c,
|
tx49/include/tx4938.h, tx49/vectorisrs/maxvectors.c,
|
||||||
|
|||||||
@@ -23,10 +23,18 @@ shared_cache_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
|||||||
|
|
||||||
## interrupts
|
## interrupts
|
||||||
|
|
||||||
|
if rm52xx
|
||||||
|
interrupts_CPPFLAGS = -DRM52XX
|
||||||
|
endif
|
||||||
|
|
||||||
if tx39
|
if tx39
|
||||||
interrupts_CPPFLAGS = -DTX39
|
interrupts_CPPFLAGS = -DTX39
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if tx49
|
||||||
|
interrupts_CPPFLAGS = -DTX49
|
||||||
|
endif
|
||||||
|
|
||||||
if mongoosev
|
if mongoosev
|
||||||
interrupts_CPPFLAGS = -DMONGOOSEV
|
interrupts_CPPFLAGS = -DMONGOOSEV
|
||||||
endif
|
endif
|
||||||
@@ -70,6 +78,22 @@ tx39_vectorisrs_rel_CPPFLAGS = $(AM_CPPFLAGS)
|
|||||||
tx39_vectorisrs_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
tx39_vectorisrs_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if tx49
|
||||||
|
include_libcpu_HEADERS += tx49/include/tx4925.h tx49/include/tx4938.h
|
||||||
|
|
||||||
|
noinst_PROGRAMS += tx49/vectorisrs.rel
|
||||||
|
tx49_vectorisrs_rel_SOURCES = tx49/vectorisrs/maxvectors.c tx49/vectorisrs/vectorisrs.c
|
||||||
|
tx49_vectorisrs_rel_CPPFLAGS = $(AM_CPPFLAGS)
|
||||||
|
tx49_vectorisrs_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
||||||
|
endif
|
||||||
|
|
||||||
|
if tx49
|
||||||
|
noinst_PROGRAMS += tx49/timer.rel
|
||||||
|
tx49_timer_rel_SOURCES = timer/timer.c timer/gettime.S
|
||||||
|
tx49_timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
|
||||||
|
tx49_timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
||||||
|
endif
|
||||||
|
|
||||||
if au1x00
|
if au1x00
|
||||||
include_libcpu_HEADERS += au1x00/include/au1x00.h
|
include_libcpu_HEADERS += au1x00/include/au1x00.h
|
||||||
|
|
||||||
@@ -102,5 +126,21 @@ r46xx_clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
|
|||||||
r46xx_clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
r46xx_clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if rm52xx
|
||||||
|
include_libcpu_HEADERS += rm52xx/include/rm5231.h
|
||||||
|
|
||||||
|
noinst_PROGRAMS += rm52xx/vectorisrs.rel
|
||||||
|
rm52xx_vectorisrs_rel_SOURCES = rm52xx/vectorisrs/maxvectors.c rm52xx/vectorisrs/vectorisrs.c
|
||||||
|
rm52xx_vectorisrs_rel_CPPFLAGS = $(AM_CPPFLAGS)
|
||||||
|
rm52xx_vectorisrs_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
||||||
|
endif
|
||||||
|
|
||||||
|
if rm52xx
|
||||||
|
noinst_PROGRAMS += rm52xx/timer.rel
|
||||||
|
rm52xx_timer_rel_SOURCES = timer/timer.c timer/gettime.S
|
||||||
|
rm52xx_timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
|
||||||
|
rm52xx_timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
||||||
|
endif
|
||||||
|
|
||||||
include $(srcdir)/preinstall.am
|
include $(srcdir)/preinstall.am
|
||||||
include $(top_srcdir)/../../../automake/local.am
|
include $(top_srcdir)/../../../automake/local.am
|
||||||
|
|||||||
@@ -26,6 +26,11 @@ AM_CONDITIONAL(r46xx, test "$RTEMS_CPU_MODEL" = "R4600" \
|
|||||||
|
|
||||||
AM_CONDITIONAL(tx39, test "$RTEMS_CPU_MODEL" = "tx3904")
|
AM_CONDITIONAL(tx39, test "$RTEMS_CPU_MODEL" = "tx3904")
|
||||||
|
|
||||||
|
AM_CONDITIONAL(tx49, test "$RTEMS_CPU_MODEL" = "tx4925" \
|
||||||
|
|| test "$RTEMS_CPU_MODEL" = "tx4938" )
|
||||||
|
|
||||||
|
AM_CONDITIONAL(rm52xx, test "$RTEMS_CPU_MODEL" = "rm5231")
|
||||||
|
|
||||||
AM_CONDITIONAL(mongoosev, test "$RTEMS_CPU_MODEL" = "mongoosev")
|
AM_CONDITIONAL(mongoosev, test "$RTEMS_CPU_MODEL" = "mongoosev")
|
||||||
|
|
||||||
AM_CONDITIONAL(au1x00, test "$RTEMS_CPU_MODEL" = "au1x00")
|
AM_CONDITIONAL(au1x00, test "$RTEMS_CPU_MODEL" = "au1x00")
|
||||||
|
|||||||
Reference in New Issue
Block a user