2011-03-07 Ralf Corsépius <ralf.corsepius@rtems.org>

* Makefile.am, configure.ac: Move file generation into Makefile.
This commit is contained in:
Ralf Corsepius
2011-03-07 04:05:18 +00:00
parent cc669290c0
commit 48588ab33d
3 changed files with 67 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
2011-03-07 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am, configure.ac: Move file generation into Makefile.
2011-03-07 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.inc.in: Set PROJECT_ROOT = @pkgdatadir@.

View File

@@ -4,6 +4,8 @@
ACLOCAL_AMFLAGS = -I aclocal -I ../aclocal
CLEANFILES =
rtems_makedir = $(pkgdatadir)/make
GENERIC_FILES = host.cfg
@@ -27,6 +29,67 @@ $(srcdir)/host.cfg.in: $(top_srcdir)/@RTEMS_TOPdir@/make/host.cfg.in
cp $< $@
endif
bsp.cfg: bsp.cfg.in Makefile
sed \
-e "s,[@]HAS_MP[@],$(HAS_MP)," \
-e "s,[@]HAS_POSIX_API[@],$(HAS_POSIX_API)," \
-e "s,[@]HAS_CPLUSPLUS[@],$(HAS_CPLUSPLUS)," \
-e "s,[@]HAS_NETWORKING[@],$(HAS_NETWORKING)," \
< $(srcdir)/bsp.cfg.in > bsp.cfg
CLEANFILES += bsp.cfg
target.cfg: target.cfg.in Makefile
sed \
-e "s,[@]CPPFLAGS[@],$(CPPFLAGS)," \
-e "s,[@]CFLAGS[@],$(CFLAGS)," \
-e "s,[@]LIBS[@],$(LIBS)," \
-e "s,[@]CC[@],$(CC)," \
-e "s,[@]CXX[@],$(CXX)," \
-e "s,[@]AS[@],$(AS)," \
-e "s,[@]AR[@],$(AR)," \
-e "s,[@]NM[@],$(NM)," \
-e "s,[@]LD[@],$(LD)," \
-e "s,[@]SIZE[@],$(SIZE)," \
-e "s,[@]STRIP[@],$(STRIP)," \
-e "s,[@]RANLIB[@],$(RANLIB)," \
-e "s,[@]OBJCOPY[@],$(OBJCOPY)," \
-e "s,[@]RTEMS_CPU[@],$(RTEMS_CPU)," \
-e "s,[@]RTEMS_HAS_MULTIPROCESSING[@],$(HAS_MP)," \
-e "s,[@]RTEMS_HAS_POSIX_API[@],$(HAS_POSIX_API)," \
-e "s,[@]RTEMS_HAS_CPLUSPLUS[@],$(HAS_CPLUSPLUS)," \
-e "s,[@]RTEMS_HAS_NETWORKING[@],$(HAS_NETWORKING)," \
< $(srcdir)/target.cfg.in > target.cfg
CLEANFILES += target.cfg
host.cfg: host.cfg.in Makefile
sed \
-e "s,[@]CP[@],$(CP)," \
-e "s,[@]MV[@],$(MV)," \
-e "s,[@]LN[@],$(LN)," \
-e "s,[@]SHELL[@],$(SHELL)," \
-e "s,[@]KSH[@],$(KSH)," \
< $(srcdir)/host.cfg.in > host.cfg
CLEANFILES += host.cfg
Makefile.inc: Makefile.inc.in Makefile
sed \
-e "s,[@]prefix[@],$(prefix)," \
-e "s,[@]exec_prefix[@],$(exec_prefix)," \
-e "s,[@]pkgdatadir[@],$(pkgdatadir)," \
-e "s,[@]RTEMS_BSP[@],$(RTEMS_BSP)," \
-e "s,[@]CC[@],$(CC)," \
-e "s,[@]CXX[@],$(CXX)," \
-e "s,[@]AS[@],$(AS)," \
-e "s,[@]AR[@],$(AR)," \
-e "s,[@]NM[@],$(NM)," \
-e "s,[@]LD[@],$(LD)," \
-e "s,[@]SIZE[@],$(SIZE)," \
-e "s,[@]OBJCOPY[@],$(OBJCOPY)," \
-e "s,[@]RTEMS_HAS_POSIX_API[@],$(HAS_POSIX_API)," \
-e "s,[@]RTEMS_HAS_CPLUSPLUS[@],$(HAS_CPLUSPLUS)," \
< $(srcdir)/Makefile.inc.in > Makefile.inc
CLEANFILES += Makefile.inc
## At the moment all actively supported configurations
## use gcc-target-default.cfg only.
rtems_make_compilersdir = $(rtems_makedir)/compilers

View File

@@ -78,9 +78,5 @@ AC_CONFIG_LINKS([leaf.cfg:leaf.cfg])
# Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile
Makefile.inc
host.cfg
bsp.cfg
])
AC_CONFIG_FILES([target.cfg])
AC_OUTPUT