2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* automake/compile.am: Add $(ARCH)/$(dirstamp) rules.
	* aclocal/lead-dot.m4: New (from automake-1.7f).
	* aclocal/rtems-top.m4: Require AM_SET_LEADING_DOT.
	Add AC_SUBST(dirstamp).
This commit is contained in:
Ralf Corsepius
2003-12-01 21:38:43 +00:00
parent eaab53e8db
commit c17ed71126
4 changed files with 49 additions and 3 deletions

View File

@@ -90,15 +90,19 @@ CCASCOMPILE = $(CCAS) $(AM_CCASFLAGS) $(CCASFLAGS)
AS = $(CC)
ASCOMPILE = $(AS) $(AM_ASFLAGS) $(ASFLAGS)
${ARCH}/%.o: %.c
${ARCH}/%.o: %.c $(ARCH)/$(dirstamp)
${COMPILE} -o $@ -c $<
${ARCH}/%.o: %.cc
${ARCH}/%.o: %.cc $(ARCH)/$(dirstamp)
${CXXCOMPILE} -o $@ -c $<
${ARCH}/%.o: %.S
${ARCH}/%.o: %.S $(ARCH)/$(dirstamp)
${CCASCOMPILE} -DASM -o $@ -c $<
${ARCH}/$(dirstamp):
@$(mkinstalldirs) $(ARCH)
@: > $(ARCH)/$(dirstamp)
# Dependency files for use by gmake
# NOTE: we don't put them into $(ARCH)
# so that 'make clean' doesn't blow it away