summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-12-12 06:31:43 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-12-12 06:31:43 +0000
commit96431668e12100fb0ad1da0e0715c647060b5da3 (patch)
treec262fca56851da39d397a8da0a373448d13b2dd3 /cpukit/rtems
parent2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-96431668e12100fb0ad1da0e0715c647060b5da3.tar.bz2
2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Don't create $ARCH as side-effect of compilation. Re-order all-local.
Diffstat (limited to 'cpukit/rtems')
-rw-r--r--cpukit/rtems/ChangeLog5
-rw-r--r--cpukit/rtems/Makefile.am3
2 files changed, 6 insertions, 2 deletions
diff --git a/cpukit/rtems/ChangeLog b/cpukit/rtems/ChangeLog
index 30585420a7..6f28c111bc 100644
--- a/cpukit/rtems/ChangeLog
+++ b/cpukit/rtems/ChangeLog
@@ -1,3 +1,8 @@
+2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * Makefile.am: Don't create $ARCH as side-effect of compilation.
+ Re-order all-local.
+
2002-12-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Remove.
diff --git a/cpukit/rtems/Makefile.am b/cpukit/rtems/Makefile.am
index 6d61e8b8a9..2b1d46dba5 100644
--- a/cpukit/rtems/Makefile.am
+++ b/cpukit/rtems/Makefile.am
@@ -145,10 +145,9 @@ OBJS = $(C_FILES:src/%.c=${ARCH}/%.$(OBJEXT))
AM_CPPFLAGS += -D__RTEMS_INSIDE__
-all-local: ${ARCH} $(PREINSTALL_FILES) $(LIB)
+all-local: $(PREINSTALL_FILES) $(ARCH) $(LIB)
${ARCH}/%.o: src/%.c
- test -d $(ARCH) || mkdir $(ARCH)
${COMPILE} -o $@ -c $<
$(LIB): ${OBJS}