summaryrefslogtreecommitdiff
path: root/main/db1-ast/Makefile
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-09-29 22:48:43 +0000
committerKevin P. Fleming <kpfleming@digium.com>2006-09-29 22:48:43 +0000
commite92c34cc38bcc4a343283dd85b469305eab812fa (patch)
tree88f2aec2951b6ce52b91c03ed0bd4a697b1642c9 /main/db1-ast/Makefile
parent3ca6a02f89c2c0e789cecc52ddaa03c1dd8c2285 (diff)
Merged revisions 44055 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r44055 | kpfleming | 2006-09-29 17:47:40 -0500 (Fri, 29 Sep 2006) | 2 lines fix a few build system bugs, and convert Makefiles to be compatible with GNU make 3.80 ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44056 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/db1-ast/Makefile')
-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 $@ $^