Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv32287

Modified Files:
        .cvsignore Makefile 
Removed Files:
        make_build_h make_defaults_h make_version_h mkdep vercomp.c 
Log Message:
move tools used during build into build_tools subdirectory
clean up Makefile headers


Index: .cvsignore
===================================================================
RCS file: /usr/cvsroot/asterisk/.cvsignore,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- .cvsignore  6 Jun 2005 17:35:17 -0000       1.15
+++ .cvsignore  20 Jun 2005 17:26:07 -0000      1.16
@@ -19,4 +19,3 @@
 .tags-sources
 tags
 TAGS
-vercomp

Index: Makefile
===================================================================
RCS file: /usr/cvsroot/asterisk/Makefile,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -d -r1.166 -r1.167
--- Makefile    6 Jun 2005 22:44:37 -0000       1.166
+++ Makefile    20 Jun 2005 17:26:07 -0000      1.167
@@ -317,15 +317,15 @@
 
 .PHONY: ast_expr
 
-vercomp: vercomp.c
+build_tools/vercomp: build_tools/vercomp.c
        $(HOST_CC) -o $@ $<
 
-ast_expr: vercomp
+ast_expr: build_tools/vercomp
        $(MAKE) ast_expr.a
 
 ifeq ($(MAKECMDGOALS),ast_expr.a)
-FLEXVER_GT_2_5_31=$(shell ./vercomp flex \>= 2.5.31)
-BISONVER_GE_1_85=$(shell ./vercomp bison \>= 1.85 )
+FLEXVER_GT_2_5_31=$(shell build_tools/vercomp flex \>= 2.5.31)
+BISONVER_GE_1_85=$(shell build_tools/vercomp bison \>= 1.85 )
 endif
 
 ifeq ($(FLEXVER_GT_2_5_31),true)
@@ -395,7 +395,7 @@
        docbook2txt asterisk.sgml
 
 defaults.h: FORCE
-       ./make_defaults_h > [EMAIL PROTECTED]
+       build_tools/make_defaults_h > [EMAIL PROTECTED]
        if ! cmp -s [EMAIL PROTECTED] $@ ; then \
                mv [EMAIL PROTECTED] $@ ; \
        fi
@@ -403,7 +403,7 @@
 
 
 include/asterisk/build.h:
-       ./make_build_h > [EMAIL PROTECTED]
+       build_tools/make_build_h > [EMAIL PROTECTED]
        if ! cmp -s [EMAIL PROTECTED] $@ ; then \
                mv [EMAIL PROTECTED] $@ ; \
        fi
@@ -415,7 +415,7 @@
 endif
 
 include/asterisk/version.h: FORCE
-       ./make_version_h > [EMAIL PROTECTED]
+       build_tools/make_version_h > [EMAIL PROTECTED]
        if ! cmp -s [EMAIL PROTECTED] $@ ; then \
                mv [EMAIL PROTECTED] $@ ; \
        fi
@@ -446,7 +446,7 @@
        rm -f include/asterisk/version.h
        rm -f ast_expr.c ast_expr.h ast_expr.output
        rm -f ast_expr2.c ast_expr2f.c ast_expr2.h ast_expr2.output
-       rm -f ast_expr.a vercomp
+       rm -f ast_expr.a build_tools/vercomp
        rm -f .version
        rm -f .tags-depend .tags-sources tags TAGS
        @if [ -f editline/Makefile ]; then $(MAKE) -C editline distclean ; fi
@@ -762,8 +762,8 @@
        for x in $(SUBDIRS); do $(MAKE) -C $$x depend || exit 1 ; done
 
 .depend:
-       ./mkdep ${CFLAGS} $(filter-out ast_expr.c,$(wildcard *.c))
-       ./mkdep -a -d ${CFLAGS} ast_expr.c
+       build_tools/mkdep ${CFLAGS} $(filter-out ast_expr.c,$(wildcard *.c))
+       build_tools/mkdep -a -d ${CFLAGS} ast_expr.c
 
 .tags-depend:
        @echo -n ".tags-depend: " > $@

--- make_build_h DELETED ---

--- make_defaults_h DELETED ---

--- make_version_h DELETED ---

--- mkdep DELETED ---

--- vercomp.c DELETED ---

_______________________________________________
Asterisk-Cvs mailing list
[email protected]
http://lists.digium.com/mailman/listinfo/asterisk-cvs

Reply via email to