summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-12-12 16:06:22 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-12-12 16:06:22 +0000
commitf442116c660c92b9e2def37a04723be81af7de7a (patch)
treeb2f5ef6291c99c2cc9c4c5cdf69024bd77981526
parent2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-f442116c660c92b9e2def37a04723be81af7de7a.tar.bz2
2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* automake/compile.am: Remove creating $(ARCH) in compilation rules.
-rw-r--r--ChangeLog4
-rw-r--r--automake/compile.am3
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 7a51dc8296..355a331ff6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
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.
2002-12-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
diff --git a/automake/compile.am b/automake/compile.am
index 1c0b010e18..b925e0a10e 100644
--- a/automake/compile.am
+++ b/automake/compile.am
@@ -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