Changeset 1178:a3614ff337fe
- Timestamp:
- 03/15/09 12:23:19 (3 years ago)
- Branch:
- default
- Location:
- trunk
- Files:
-
- 3 edited
-
Makefile.in (modified) (2 diffs)
-
configure (modified) (2 diffs)
-
configure.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.in
r1163 r1178 11 11 LN_S:=@LN_S@ 12 12 13 TAGS:=@TAGS@ 14 13 15 CPPFLAGS:=-I./include @CPPFLAGS@ 14 16 LDFLAGS:=-L./ @LDFLAGS@ 15 CFLAGS:=@CFLAGS@ @DEFS@17 CFLAGS:=@CFLAGS@ 16 18 17 19 ########################################################### … … 157 159 @echo "" 158 160 161 tags: 162 @if test -n "${TAGS}" -a -x "${TAGS}";\ 163 then\ 164 ${TAGS} include/libdodo/* src/*;\ 165 else\ 166 echo "No application was found for generating tags";\ 167 fi 168 159 169 clean: 160 170 @rm -rf *.o *.so* *.a* -
trunk/configure
r1163 r1178 642 642 CXXCPP 643 643 DEBUG 644 TAGS 644 645 INSTALL_DATA 645 646 INSTALL_SCRIPT … … 5320 5321 ## 5321 5322 5323 5324 TAGS=$(which etags) 5325 if test -z "$TAGS" -o ! -x "$TAGS" 5326 then 5327 TAGS=$(which ctags) 5328 if test -z "$TAGS" -o ! -x "$TAGS" 5329 then 5330 { $as_echo "$as_me:$LINENO: WARNING: No application was found for generating tags" >&5 5331 $as_echo "$as_me: WARNING: No application was found for generating tags" >&2;} 5332 else 5333 { $as_echo "$as_me:$LINENO: result: ctags will be used for generating tags" >&5 5334 $as_echo "ctags will be used for generating tags" >&6; } 5335 fi 5336 else 5337 { $as_echo "$as_me:$LINENO: result: etags will be used for generating tags" >&5 5338 $as_echo "etags will be used for generating tags" >&6; } 5339 fi 5340 5322 5341 cat > include/libdodo/directives.runtime.h <<EOF 5323 5342 /*************************************************************************** -
trunk/configure.in
r1163 r1178 61 61 # checking dependencies/build options 62 62 ## 63 64 AC_SUBST(TAGS) 65 TAGS=$(which etags) 66 if test -z "$TAGS" -o ! -x "$TAGS" 67 then 68 TAGS=$(which ctags) 69 if test -z "$TAGS" -o ! -x "$TAGS" 70 then 71 AC_MSG_WARN(No application was found for generating tags) 72 else 73 AC_MSG_RESULT(ctags will be used for generating tags) 74 fi 75 else 76 AC_MSG_RESULT(etags will be used for generating tags) 77 fi 63 78 64 79 cat > include/libdodo/directives.runtime.h <<EOF
Note: See TracChangeset
for help on using the changeset viewer.
