~ubuntu-branches/ubuntu/oneiric/gimp/oneiric-updates

« back to all changes in this revision

Viewing changes to plug-ins/common/mkgen.pl

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2011-05-03 21:54:00 UTC
  • mfrom: (0.4.8 sid)
  • Revision ID: package-import@ubuntu.com-20110503215400-ldvej6dknqq6o8bk
Tags: 2.6.11-2ubuntu1
* Merge with Debian unstable, remaining changes:
  - debian/patches/02_help-message.patch,
    debian/patches/03_gimp.desktop.in.in.patch:
    + Update some strings for Ubuntu
  - debian/control:
    + Update description
    + Change build-depends from libwebkit-dev to libwebkitgtk-dev
  - debian/rules:
    + Set gettext domain and update translation templates

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
## Modify those two files instead of this one; for most
52
52
## plug-ins you should only need to modify plugin-defs.pl.
53
53
 
54
 
if OS_WIN32
55
 
mwindows = -mwindows
56
 
else
57
 
libm = -lm
58
 
endif
59
54
 
60
55
libgimp = \$(top_builddir)/libgimp/libgimp-\$(GIMP_API_VERSION).la
61
56
libgimpbase = \$(top_builddir)/libgimpbase/libgimpbase-\$(GIMP_API_VERSION).la
62
57
libgimpcolor = \$(top_builddir)/libgimpcolor/libgimpcolor-\$(GIMP_API_VERSION).la
63
58
libgimpconfig = \$(top_builddir)/libgimpconfig/libgimpconfig-\$(GIMP_API_VERSION).la
64
 
libgimpmath = \$(top_builddir)/libgimpmath/libgimpmath-\$(GIMP_API_VERSION).la \$(libm)
 
59
libgimpmath = \$(top_builddir)/libgimpmath/libgimpmath-\$(GIMP_API_VERSION).la
65
60
libgimpmodule = \$(top_builddir)/libgimpmodule/libgimpmodule-\$(GIMP_API_VERSION).la
66
61
libgimpui = \$(top_builddir)/libgimp/libgimpui-\$(GIMP_API_VERSION).la
67
62
libgimpwidgets = \$(top_builddir)/libgimpwidgets/libgimpwidgets-\$(GIMP_API_VERSION).la
68
63
 
69
64
 
 
65
if OS_WIN32
 
66
mwindows = -mwindows
 
67
endif
 
68
 
70
69
AM_LDFLAGS = \$(mwindows)
71
70
 
72
71
libexecdir = \$(gimpplugindir)/plug-ins