Kaydet (Commit) c80bcbc4 authored tarafından Enrico Tröger's avatar Enrico Tröger

Make the make command overwritable, patch by Pierre Joye. Thanks.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2280 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst ce129406
......@@ -10,6 +10,8 @@
Apply patch by Pierre Joye to add new process spawning implementation
for Windows. Make utils_spawn_* available to plugin API.
This makes the VCdiff plugin to work on Windows (thanks).
* makefile.win32:
Make the make command overwritable, patch by Pierre Joye. Thanks.
2008-02-22 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
......
......@@ -16,15 +16,16 @@ CC = gcc
CXX = g++
CP = copy
RM = del
MAKE = make
-include localwin32.mk
# Note: && is needed after cd because each line is executed in a different
# shell. (cd .. is just for clarity).
all: check-tools config.h
cd tagmanager && make -f makefile.win32 && cd ..
cd scintilla && make -f makefile.win32 && cd ..
cd plugins && make -f makefile.win32 && cd ..
cd src && make -f makefile.win32 && cd ..
cd tagmanager && $(MAKE) -f makefile.win32 && cd ..
cd scintilla && $(MAKE) -f makefile.win32 && cd ..
cd plugins && $(MAKE) -f makefile.win32 && cd ..
cd src && $(MAKE) -f makefile.win32 && cd ..
# first check the required tools are installed
check-tools:
......@@ -43,7 +44,7 @@ clean-local:
-$(RM) geany_private.res geany.exe
clean: deps
cd tagmanager && make -f makefile.win32 clean && cd ..
cd scintilla && make -f makefile.win32 clean && cd ..
cd plugins && make -f makefile.win32 clean && cd ..
cd src && make -f makefile.win32 clean && cd ..
cd tagmanager && $(MAKE) -f makefile.win32 clean && cd ..
cd scintilla && $(MAKE) -f makefile.win32 clean && cd ..
cd plugins && $(MAKE) -f makefile.win32 clean && cd ..
cd src && $(MAKE) -f makefile.win32 clean && cd ..
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment