~ubuntu-branches/ubuntu/jaunty/geany/jaunty

« back to all changes in this revision

Viewing changes to makefile.win32

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2008-05-09 20:40:06 UTC
  • mfrom: (1.1.7 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080509204006-9fu737rfvapfj7pn
Tags: 0.14-1ubuntu1
* Merge from debian unstable, remaining changes:
  - patches/20_add_debdiff_as_diff_type.dpatch:
    Also recognize .dpatch files as diff's
  - debian/geany.xpm:
    Replace icon with a .xpm of the new one
  - Modify Maintainer value to match the DebianMaintainerField
    specification.

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 plugins && make -f makefile.win32 && cd ..
27
 
        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 ..
28
29
 
29
30
# first check the required tools are installed
30
31
check-tools:
43
44
        -$(RM) geany_private.res geany.exe
44
45
 
45
46
clean: deps
46
 
        cd tagmanager && make -f makefile.win32 clean && cd ..
47
 
        cd scintilla && make -f makefile.win32 clean && cd ..
48
 
        cd plugins && make -f makefile.win32 clean && cd ..
49
 
        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 ..