SF.net SVN: geany:[3655] trunk/scripts/wafinit.sh
eht16 at users.sourceforge.net
eht16 at xxxxx
Thu Mar 26 20:17:16 UTC 2009
Revision: 3655
http://geany.svn.sourceforge.net/geany/?rev=3655&view=rev
Author: eht16
Date: 2009-03-26 20:17:16 +0000 (Thu, 26 Mar 2009)
Log Message:
-----------
Always build Geany completely, also when the fake Makefile is called in a subdirectory.
Add fake Makefile for the plugins directory.
Modified Paths:
--------------
trunk/scripts/wafinit.sh
Modified: trunk/scripts/wafinit.sh
===================================================================
--- trunk/scripts/wafinit.sh 2009-03-26 20:10:47 UTC (rev 3654)
+++ trunk/scripts/wafinit.sh 2009-03-26 20:17:16 UTC (rev 3655)
@@ -48,7 +48,7 @@
all: build
build:
- cd .. && $WAF build --targets=geany \$@
+ cd .. && $WAF build \$@
EOF
@@ -58,7 +58,7 @@
all: build
build:
- cd .. && $WAF build --targets=tagmanager \$@
+ cd .. && $WAF build \$@
EOF
@@ -68,10 +68,20 @@
all: build
build:
- cd .. && $WAF build --targets=scintilla \$@
+ cd .. && $WAF build \$@
EOF
+# plugins/Makefile
+cat > plugins/Makefile << EOF
+
+all: build
+
+build:
+ cd .. && $WAF build \$@
+
+EOF
+
# configure
cat > configure << EOF
#!/bin/sh
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list