aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-27 15:52:17 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-27 15:52:17 +0000
commitcc2b4cec8d3dbf21c48f9e8a1ea5989a345ca471 (patch)
tree29024470afdff763cde429f158e7427624b2f195
parent2ebdcb0068a36c6ddabb06d28fa52d8837454e01 (diff)
Fix build fix (bug #321)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1572 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xMakefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b904fa6b9..1884f1761 100755
--- a/Makefile
+++ b/Makefile
@@ -155,10 +155,11 @@ all: depend asterisk subdirs
editline/config.h:
cd editline && unset CFLAGS LIBS && ./configure ; \
-editline/libedit.a:
+editline/libedit.a: FORCE
+ cd editline && unset CFLAGS LIBS && test -f config.h || ./configure
$(MAKE) -C editline libedit.a
-db1-ast/libdb1.a:
+db1-ast/libdb1.a: FORCE
@if [ -d db1-ast ]; then \
$(MAKE) -C db1-ast libdb1.a ; \
else \
@@ -194,7 +195,7 @@ build.h:
./make_build_h
endif
-stdtime/libtime.a:
+stdtime/libtime.a: FORCE
@if [ -d stdtime ]; then \
$(MAKE) -C stdtime libtime.a ; \
else \
@@ -415,3 +416,4 @@ depend: .depend
.depend:
./mkdep ${CFLAGS} `ls *.c`
+FORCE: