Author: wyoung
Date: Mon Mar 6 17:40:06 2006
New Revision: 1224
URL: http://svn.gna.org/viewcvs/mysqlpp?rev=1224&view=rev
Log:
ctags targets are now called 'tags', now that I've got the right syntax
for making "phony" Makefile targets. Added ctags targets as aliases, in
case someone has the habit of saying "make ctags".
Modified:
branches/v2.1-bakefile/examples/examples.bkl
branches/v2.1-bakefile/lib/lib.bkl
branches/v2.1-bakefile/mysql++.bkl
Modified: branches/v2.1-bakefile/examples/examples.bkl
URL:
http://svn.gna.org/viewcvs/mysqlpp/branches/v2.1-bakefile/examples/examples.bkl?rev=1224&r1=1223&r2=1224&view=diff
==============================================================================
--- branches/v2.1-bakefile/examples/examples.bkl (original)
+++ branches/v2.1-bakefile/examples/examples.bkl Mon Mar 6 17:40:06 2006
@@ -125,8 +125,10 @@
</if>
<if cond="FORMAT=='autoconf'">
- <action id="ctags">
- <command>( cd .. ; make ctags )</command>
+ <action id="tags">
+ <is-phony/>
+ <command>( cd .. ; make tags )</command>
</action>
+ <action id="ctags"><depends>tags</depends></action>
</if>
</makefile>
Modified: branches/v2.1-bakefile/lib/lib.bkl
URL:
http://svn.gna.org/viewcvs/mysqlpp/branches/v2.1-bakefile/lib/lib.bkl?rev=1224&r1=1223&r2=1224&view=diff
==============================================================================
--- branches/v2.1-bakefile/lib/lib.bkl (original)
+++ branches/v2.1-bakefile/lib/lib.bkl Mon Mar 6 17:40:06 2006
@@ -57,8 +57,10 @@
</action>
<if cond="FORMAT=='autoconf'">
- <action id="ctags">
- <command>( cd .. ; make ctags )</command>
+ <action id="tags">
+ <is-phony/>
+ <command>( cd .. ; make tags )</command>
</action>
+ <action id="ctags"><depends>tags</depends></action>
</if>
</makefile>
Modified: branches/v2.1-bakefile/mysql++.bkl
URL:
http://svn.gna.org/viewcvs/mysqlpp/branches/v2.1-bakefile/mysql%2B%2B.bkl?rev=1224&r1=1223&r2=1224&view=diff
==============================================================================
--- branches/v2.1-bakefile/mysql++.bkl (original)
+++ branches/v2.1-bakefile/mysql++.bkl Mon Mar 6 17:40:06 2006
@@ -112,10 +112,12 @@
</command>
</action>
- <action id="ctags">
+ <action id="tags">
+ <is-phony/>
<command>ctags `pwd`/{lib,examples}/*.{cpp,h}</command>
<command>( cd lib ; ln -sf ../tags . )</command>
<command>( cd examples ; ln -sf ../tags . )</command>
</action>
+ <action id="ctags"><depends>tags</depends></action>
</if>
</makefile>
_______________________________________________
Mysqlpp-commits mailing list
[email protected]
https://mail.gna.org/listinfo/mysqlpp-commits