summaryrefslogtreecommitdiffstats
path: root/automake
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-02-25 14:51:28 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-02-25 14:51:28 +0000
commit77b2b0ec5b86366f25104cf2532a46a4c8c61242 (patch)
tree9f4dfbadb25443a0236ecb706f15634a0a51b4e3 /automake
parentCorrecting them so they have a chance of working. They need to (diff)
downloadrtems-77b2b0ec5b86366f25104cf2532a46a4c8c61242.tar.bz2
Patches rtems-rc-4.5.0-1.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>
that fixes numerous miscellaneous issues most related to the debug and profile build stanzas: Fix for the "make debug" (1) issue and an analogous issue with "make profile" (untested). * Fixes to mcp750.cfg (make debug, directories) (2) * Updates/minor fixes for shgen (3) * Updates some custom/*.cfgs to use $(LINK.c) instead of $(CC) * Leftovers from rtems-rc-4.5.0-[0|1].diff which somehow did not make it into cvs. * Cleanups to the perlscripts below tools/update/ * Some unsorted minor fixes. Footnotes/Remarks: (1) Tested for all m68k, sh, sparc, unix and selected i386, ppc BSPs. Known problems: I can't build the debug variant for the m68k/mvme162 and m68k/mvme162lx (segmentation fault - signal 11 :) (2) Tested by building the BSP, but I doubt the debug-variant is functional. The flags used for the debug variant should be checked by knowledgeable persons and probably at runtime #:o) (3) I have updated shgen to use getopt_long (it should fall back to getopt if not available), enhanced the options, cleaned up some minor tweaks and added help2man support (rough automatic man-page generation). Technical notes: * make debug and make profile now work similar in target Makefile.ams as they did in old autoconf-Makefile.ins using leaf.cfg. Unlike the rules in leaf.cfg these Makefile.am also recurse once on themselves in directory Makefiles before or after recursing into subdirectories, not only in leaf-directories. To implement this behavior, I renamed the former automake/local.am into automake/host.am and extended local.am to provide this recursion. I.e. host.am implements the non-self-recursive variant, while local.am now implements the self-recursive behavior. => all Makefile.ams exploiting build-variants are supposed to include local.am => all Makefile.ams not exploiting build-variants should include host.am => Rules of thumb: - Only include one of both, either local.am or host.am into a Makefile.am. -Target-Makefile.ams should include local.am -Host-Makefile.ams should include host.am (Probably, you now understand the naming) - There are exceptions from these rules :) * Now, make debug|profile|all are independent of each other. However, each of them however triggers preinstall. * "make install" still decends into the subdirectories but does not trigger "all|profile|debug|preinstall" in target Makefile.am anymore. Besides triggering "install"-rules in some selected Makefile.ams, it only packs $(PROJECT_ROOT) into a tarballs and unpacks it to $(prefix). => "make install" alone is not enough to install RTEMS, now use make RTEMS_BSP=<bsps> [all] [debug] [profile] make RTEMS_BSP=<bsp> install I consider this to be a step back wrt. exploiting automake mechanisms, and expect this to be reverted if we abandon building target variants in favour of the standard convention of optionally overriding flags from the command line (i.e. instead of "make debug", GNU standards favor "make CFLAGS=<options> --prefix=<location>")
Diffstat (limited to 'automake')
-rw-r--r--automake/local.am9
1 files changed, 9 insertions, 0 deletions
diff --git a/automake/local.am b/automake/local.am
index a6c43b1779..a98f3dea5a 100644
--- a/automake/local.am
+++ b/automake/local.am
@@ -6,10 +6,19 @@
## and this file will probably be removed
debug-am:
+ $(MAKE) $(AM_MAKEFLAGS) "ARCH=o-debug" \
+ "CFLAGS_DEBUG=$(CFLAGS_DEBUG_V)" \
+ "CFLAGS_OPTIMIZE=$(CFLAGS_DEBUG_OPTIMIZE_V)" \
+ "LDFLAGS_DEBUG=$(LDFLAGS_DEBUG_V)" $(TARGET_VA)
+
debug: debug-am
.PHONY: debug debug-am
profile-am:
+ $(MAKE) $(AM_MAKEFLAGS) "ARCH=o-profile" \
+ "CFLAGS_PROFILE=$(CFLAGS_PROFILE_V)" \
+ "LDFLAGS_PROFILE=$(LDFLAGS_PROFILE_V)" $(TARGET_VA)
+
profile: profile-am
.PHONY: profile profile-am