~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to libgimpwidgets/makefile.msc

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
all : \
23
23
        ..\config.h \
 
24
        gimp-wilber-pixbufs.h \
24
25
        gimpwidgetsmarshal.c \
25
26
        gimpwidgets-$(GIMP_VER).dll
26
27
 
31
32
        $(INSTALL) gimpmath-$(GIMP_VER).dll $(BIN)
32
33
 
33
34
OBJECTS = \
 
35
        gimpbrowser.obj \
34
36
        gimpbutton.obj \
35
37
        gimpcellrenderercolor.obj \
36
38
        gimpcellrenderertoggle.obj \
48
50
        gimpcolorselector.obj \
49
51
        gimpcontroller.obj \
50
52
        gimpdialog.obj \
 
53
        gimpenumcombobox.obj \
 
54
        gimpenumlabel.obj \
 
55
        gimpenumstore.obj \
 
56
        gimpenumwidgets.obj \
51
57
        gimpfileentry.obj \
52
58
        gimpframe.obj \
53
59
        gimphelpui.obj \
 
60
        gimphintbox.obj \
54
61
        gimpintcombobox.obj \
55
62
        gimpintstore.obj \
56
63
        gimpmemsizeentry.obj \
57
64
        gimpoffsetarea.obj \
58
65
        gimpoldwidgets.obj \
 
66
        gimppageselector.obj \
59
67
        gimppatheditor.obj \
60
68
        gimppickbutton.obj \
61
69
        gimppixmap.obj \
62
70
        gimppreviewarea.obj \
63
71
        gimppreview.obj \
 
72
        gimppropwidgets.obj \
 
73
        gimpratioentry.obj \
64
74
        gimpscrolledpreview.obj \
 
75
        gimpstringcombobox.obj \
65
76
        gimpquerybox.obj \
 
77
        gimpresolutionentry.obj \
66
78
        gimpsizeentry.obj \
67
79
        gimpstock.obj \
68
80
        gimpunitmenu.obj \
69
81
        gimpwidgets.obj \
 
82
        gimpzoommodel.obj \
70
83
        gimpwidgets-private.obj \
 
84
        gimpwidgetsenums.obj \
71
85
        gimpwidgetsmarshal.obj \
72
86
 
73
87
 
 
88
# these are duplicated from the $(TOP)/themes/default/images directory - though under a different name
 
89
WILBER_IMAGES = \
 
90
        wilber-16.png   \
 
91
        wilber-32.png   \
 
92
        wilber-48.png   \
 
93
        wilber-64.png
 
94
 
 
95
WILBER_VARIABLES = \
 
96
        wilber_16  wilber-16.png        \
 
97
        wilber_32  wilber-32.png        \
 
98
        wilber_48  wilber-48.png        \
 
99
        wilber_64  wilber-64.png
 
100
 
 
101
gimp-wilber-pixbufs.h: $(WILBER_IMAGES) makefile.msc
 
102
        gdk-pixbuf-csource --raw --build-list $(WILBER_VARIABLES) > gimp-wilber-pixbufs.h
 
103
 
74
104
gimpwidgetsmarshal.h : gimpwidgetsmarshal.list
75
105
        $(GLIB)\gobject\glib-genmarshal --prefix=_gimp_widgets_marshal gimpwidgetsmarshal.list --header >gimpwidgetsmarshal.h
76
106
 
84
114
gimpwidgets-$(GIMP_VER).dll : $(OBJECTS) gimpwidgets.def
85
115
        $(CC) $(CFLAGS) -LD -Fegimpwidgets-$(GIMP_VER).dll $(OBJECTS) \
86
116
        ..\libgimpcolor\gimpcolor-$(GIMP_VER).lib \
 
117
        ..\libgimpconfig\gimpconfig-$(GIMP_VER).lib \
87
118
        ..\libgimpbase\gimpbase-$(GIMP_VER).lib \
88
119
        $(DEPLIBS) $(LDFLAGS) user32.lib /def:gimpwidgets.def
89
120