Create Makefiles for src, tagmanager and scintilla sub directories to be able to run make from within Geany.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2681 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
54cf3a19bd
commit
c0c173d20e
@ -4,6 +4,9 @@
|
|||||||
Use proper quoted multi-line string check from CTags SVN.
|
Use proper quoted multi-line string check from CTags SVN.
|
||||||
* src/geanyobject.c:
|
* src/geanyobject.c:
|
||||||
Fix wrong marshal type (pointer != int).
|
Fix wrong marshal type (pointer != int).
|
||||||
|
* scripts/wafinit.sh:
|
||||||
|
Create Makefiles for src, tagmanager and scintilla sub directories
|
||||||
|
to be able to run make from within Geany.
|
||||||
|
|
||||||
|
|
||||||
2008-06-10 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
|
2008-06-10 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
|
||||||
|
@ -9,7 +9,7 @@ then
|
|||||||
WAF="./waf"
|
WAF="./waf"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Makefile
|
||||||
cat > Makefile << EOF
|
cat > Makefile << EOF
|
||||||
|
|
||||||
.PHONY: build configure
|
.PHONY: build configure
|
||||||
@ -43,6 +43,37 @@ configure:
|
|||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
# src/Makefile
|
||||||
|
cat > src/Makefile << EOF
|
||||||
|
|
||||||
|
all: build
|
||||||
|
|
||||||
|
build:
|
||||||
|
cd .. && $WAF build --targets=geany \$@
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# tagmanager/Makefile
|
||||||
|
cat > tagmanager/Makefile << EOF
|
||||||
|
|
||||||
|
all: build
|
||||||
|
|
||||||
|
build:
|
||||||
|
cd .. && $WAF build --targets=tagmanager \$@
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# scintilla/Makefile
|
||||||
|
cat > scintilla/Makefile << EOF
|
||||||
|
|
||||||
|
all: build
|
||||||
|
|
||||||
|
build:
|
||||||
|
cd .. && $WAF build --targets=scintilla \$@
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# configure
|
||||||
cat > configure << EOF
|
cat > configure << EOF
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user