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

* automake/compile.am: Remove creating $(ARCH) in compilation rules.
This commit is contained in:
Ralf Corsepius
2002-12-12 16:06:22 +00:00
parent 131814fad0
commit f442116c66
2 changed files with 4 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* automake/compile.am: Remove creating $(ARCH) in compilation rules.
2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Require autoconf >= 2.57 and automake-1.7.2.

View File

@@ -88,15 +88,12 @@ AS = $(CC)
ASCOMPILE = $(AS) $(AM_ASFLAGS) $(ASFLAGS)
${ARCH}/%.o: %.c
test -d $(ARCH) || mkdir $(ARCH)
${COMPILE} -o $@ -c $<
${ARCH}/%.o: %.cc
test -d $(ARCH) || mkdir $(ARCH)
${CXXCOMPILE} -o $@ -c $<
${ARCH}/%.o: %.S
test -d $(ARCH) || mkdir $(ARCH)
${CCASCOMPILE} -DASM -o $@ -c $<
# Dependency files for use by gmake