aboutsummaryrefslogtreecommitdiffstats
path: root/main/db1-ast
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-29 22:47:40 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-29 22:47:40 +0000
commitbaa8d6158635e36d4daaa52ddec661cd1bb0912f (patch)
treee4c026f46c9bc49b0e295938912686965a0897dc /main/db1-ast
parent8db549642d02e7a37783caec3d1b9929cfa5db55 (diff)
fix a few build system bugs, and convert Makefiles to be compatible with GNU make 3.80
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@44055 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/db1-ast')
-rw-r--r--main/db1-ast/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/main/db1-ast/Makefile b/main/db1-ast/Makefile
index 4fb92fc3c..59ad0e25e 100644
--- a/main/db1-ast/Makefile
+++ b/main/db1-ast/Makefile
@@ -36,7 +36,10 @@ include $(ASTTOPDIR)/Makefile.rules
all: $(LIBDB) #$(LIBDBSO) $(PROG)
-$(eval $(call ast_make_a_o,$(LIBDB),$(OBJS)))
+$(LIBDB): $(OBJS)
+ $(ECHO_PREFIX) echo " [AR] $^ -> $@"
+ $(CMD_PREFIX) $(AR) cr $@ $^
+ $(CMD_PREFIX) $(RANLIB) $@
$(LIBDBSO): $(SHOBJS)
$(CC) -Wl,-O1 -Wl,--version-script=libdb.map -Wl,-soname=$(LIBDBSO) -shared -o $@ $^