aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-08-24 23:34:50 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-08-24 23:34:50 +0000
commit4f22dc27d91eedc9318b592eac49b47cd0b10abb (patch)
tree88b788bdc395acc58e7ed72ae7a65d83a5582d67 /Makefile
parentbe8272b412e4510a57e6fa39b72a80a3c5e7eb9e (diff)
Build improvements (bugs #161, 162)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1421 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 174852a59..433d05bec 100755
--- a/Makefile
+++ b/Makefile
@@ -106,7 +106,7 @@ CFLAGS+=$(shell if [ -f /usr/include/linux/zaptel.h ]; then echo "-DZAPTEL_OPTIM
LIBEDIT=editline/libedit.a
-ASTERISKVERSION=$(shell if [ -f .version ]; then cat .version; fi)
+ASTERISKVERSION=$(shell if [ -f .version ]; then cat .version; else if [ -d CVS ]; then echo "CVS-`date +"%D-%T"`"; fi; fi)
HTTPDIR=$(shell if [ -d /var/www ]; then echo "/var/www"; else echo "/home/httpd"; fi)
RPMVERSION=$(shell if [ -f .version ]; then sed 's/[-\/:]/_/g' .version; else echo "unknown" ; fi)
CFLAGS+=-DASTERISK_VERSION=\"$(ASTERISKVERSION)\"
@@ -175,8 +175,10 @@ ifneq ($(wildcard .depend),)
include .depend
endif
+.PHONY: _version
+
_version:
- if [ -d CVS ] && ! [ -f .version ]; then echo "CVS-`date +"%D-%T"`" > .version; fi
+ if [ -d CVS ] && ! [ -f .version ]; then echo $(ASTERISKVERSION) > .version; fi
.version: _version
@@ -188,8 +190,6 @@ ast_expr.o: ast_expr.c
cli.o: cli.c build.h
ifneq ($(strip $(ASTERISKVERSION)),)
-asterisk.o: asterisk.c .version
-
build.h: .version
./make_build_h
else
@@ -197,7 +197,7 @@ build.h:
./make_build_h
endif
-asterisk: .version build.h editline/libedit.a db1-ast/libdb1.a $(OBJS)
+asterisk: editline/libedit.a db1-ast/libdb1.a $(OBJS)
$(CC) $(DEBUG) -o asterisk -rdynamic $(OBJS) $(LIBS) $(LIBEDIT) db1-ast/libdb1.a
subdirs: