summaryrefslogtreecommitdiffstats
path: root/c/src/automake
diff options
context:
space:
mode:
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 =