~ubuntu-branches/ubuntu/raring/geany/raring-proposed

« back to all changes in this revision

Viewing changes to makefile.win32

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2008-05-02 11:37:45 UTC
  • mfrom: (1.2.1 upstream) (9 hardy)
  • mto: (3.2.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20080502113745-xzp4g6dmovrpoj17
Tags: 0.14-1
New upstream release (Closes: #478126)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
CXX = g++
17
17
CP = copy
18
18
RM = del
 
19
MAKE = make
19
20
-include localwin32.mk
20
21
 
21
22
# Note: && is needed after cd because each line is executed in a different
22
23
# shell. (cd .. is just for clarity).
23
24
all: check-tools config.h
24
 
        cd tagmanager && make -f makefile.win32 && cd ..
25
 
        cd scintilla && make -f makefile.win32 && cd ..
26
 
        cd src && make -f makefile.win32 && cd ..
 
25
        cd tagmanager && $(MAKE) -f makefile.win32 && cd ..
 
26
        cd scintilla && $(MAKE) -f makefile.win32 && cd ..
 
27
        cd plugins && $(MAKE) -f makefile.win32 && cd ..
 
28
        cd src && $(MAKE) -f makefile.win32 && cd ..
27
29
 
28
30
# first check the required tools are installed
29
31
check-tools:
35
37
        $(CP) $< $@
36
38
 
37
39
deps:
38
 
        -$(RM) tagmanager\deps.mak scintilla\deps.mak src\deps.mak
 
40
        -$(RM) tagmanager\deps.mak scintilla\deps.mak plugins\deps.mak src\deps.mak
39
41
 
40
42
# used by src/makefile.win32 to avoid del ../file which is an error
41
43
clean-local:
42
44
        -$(RM) geany_private.res geany.exe
43
45
 
44
46
clean: deps
45
 
        cd tagmanager && make -f makefile.win32 clean && cd ..
46
 
        cd scintilla && make -f makefile.win32 clean && cd ..
47
 
        cd src && make -f makefile.win32 clean && cd ..
 
47
        cd tagmanager && $(MAKE) -f makefile.win32 clean && cd ..
 
48
        cd scintilla && $(MAKE) -f makefile.win32 clean && cd ..
 
49
        cd plugins && $(MAKE) -f makefile.win32 clean && cd ..
 
50
        cd src && $(MAKE) -f makefile.win32 clean && cd ..