summaryrefslogtreecommitdiffstats
path: root/c/src/automake
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-12-12 12:36:19 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-12-12 12:36:19 +0000
commit14348a0058ebd473a1b75dd8a6219413c74b53bf (patch)
tree4783214f4e3f19637af2e02f4a381e6810bc7433 /c/src/automake
parent2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-14348a0058ebd473a1b75dd8a6219413c74b53bf.tar.bz2
2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/lead-dot.m4: Remove (Provided by automake-1.8). * automake/compile.am: Use mkdir_p instead of mkinstalldirs. * automake/lib.am: Use mkdir_p instead of mkdir. Remove $(PROJECT_RELEASE)/lib/$(dirstamp) handling. * aclocal/env-rtemsbsp.m4: Remove bsplibdir. Cleanups.
Diffstat (limited to 'c/src/automake')
-rw-r--r--c/src/automake/compile.am2
-rw-r--r--c/src/automake/lib.am10
2 files changed, 3 insertions, 9 deletions
diff --git a/c/src/automake/compile.am b/c/src/automake/compile.am
index 7132985a3e..8ce22634c4 100644
--- a/c/src/automake/compile.am
+++ b/c/src/automake/compile.am
@@ -100,7 +100,7 @@ ${ARCH}/%.o: %.S $(ARCH)/$(dirstamp)
${CCASCOMPILE} -DASM -o $@ -c $<
${ARCH}/$(dirstamp):
- @$(mkinstalldirs) $(ARCH)
+ @$(mkdir_p) $(ARCH)
@: > $(ARCH)/$(dirstamp)
# Dependency files for use by gmake
diff --git a/c/src/automake/lib.am b/c/src/automake/lib.am
index 9a5aa21c71..637694c84f 100644
--- a/c/src/automake/lib.am
+++ b/c/src/automake/lib.am
@@ -9,16 +9,10 @@ RANLIB = @RANLIB@
ARFLAGS = ruv
define make-library
-test -d $(ARCH) || mkdir $(ARCH)
+@$(mkdir_p) $(ARCH)
$(RM) $@
$(AR) $(ARFLAGS) $@ $^
$(RANLIB) $@
endef
-$(PROJECT_RELEASE)/lib/$(dirstamp):
- @$(mkinstalldirs) $@
- @: > $(PROJECT_RELEASE)/lib/$(dirstamp)
-
-TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib
-
-.PRECIOUS: $(LIB)
+TMPINSTALL_FILES =