~ubuntu-branches/ubuntu/wily/geany/wily-proposed

« back to all changes in this revision

Viewing changes to src/makefile.win32

  • Committer: Package Import Robot
  • Author(s): Evgeni Golov
  • Date: 2011-11-17 12:59:57 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20111117125957-nv48s8qkd2clcmr1
Tags: 0.21-1
* Imported Upstream version 0.21
* Refresh filetypes patch against 0.21
* Fix Description (thanks lintian!)
* Standards-Version: 3.9.2
* dpatch → 3.0 (quilt)
* Switch to new dh-style debian/rules
* Add a patch to search for plugins in both, multiarch and
  non-multiarch folders
* Add misc:Pre-Depends to Pre-Depends for multiarch
* Generate geany:Provides with GEANY_ABI_VERSION and GEANY_API_VERSION
* Split arch independent parts into geany-common
* Set maintainer to pkg-geany
* Set Vcs-* headers for pkg-geany
* Drop README.source, we're using standard 3.0 quilt now

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
INCLUDEDIRS=  -I.. \
34
34
              -I../scintilla/include \
 
35
              -I../tagmanager/mio \
35
36
              -I../tagmanager/include \
36
37
              $(GTK_INCLUDES)
37
38
 
38
39
ALL_GTK_LIBS= \
39
40
        -L"$(PREFIX)/lib" \
40
41
        -lgtk-win32-2.0 -lgdk-win32-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangowin32-1.0 -lgdi32 \
41
 
        -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lglib-2.0 -lintl
 
42
        -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lglib-2.0 -lgthread-2.0 -lintl \
 
43
        -lcairo -lpangocairo-1.0 -lgio-2.0
42
44
        # these things are for GTK >= 2.8
43
45
        # (should be same as with MSYS: pkg-config --libs gtk+-2.0 gthread-2.0)
44
46
        #"$(PREFIX)/lib/libcairo.dll.a" \
45
47
        #"$(PREFIX)/lib/asprintf.lib" \
46
48
        #"$(PREFIX)/lib/charset.lib" \
47
49
 
48
 
ifdef GTK280
49
 
ALL_GTK_LIBS +=-liconv
50
 
else
51
 
ALL_GTK_LIBS +=-lcairo -lpangocairo-1.0 -lgio-2.0
52
 
endif
53
 
 
54
50
WIN_LIBS=-mwindows -lole32 -luuid -liberty -lwsock32
55
51
 
56
52
CBASEFLAGS=-Wall -pipe -mms-bitfields $(DEFINES) $(INCLUDEDIRS)
90
86
binclean:
91
87
        $(RM) $(TARGET)
92
88
 
93
 
$(TARGET): $(OBJS) $(RES) ../scintilla/scintilla.a ../tagmanager/tagmanager.a
 
89
$(TARGET): $(OBJS) $(RES) ../scintilla/scintilla.a ../tagmanager/mio/mio.a ../tagmanager/tagmanager.a
94
90
        $(CXX) $(OBJS) $(RES) -o $(TARGET) \
95
 
        ../scintilla/scintilla.a ../tagmanager/tagmanager.a $(ALL_GTK_LIBS) \
96
 
         $(WIN_LIBS)
 
91
        ../scintilla/scintilla.a ../tagmanager/tagmanager.a ../tagmanager/mio/mio.a \
 
92
        $(ALL_GTK_LIBS) $(WIN_LIBS)
97
93
 
98
94
deps.mak:
99
95
        $(CC) -MM  $(CFLAGS) *.c >deps.mak