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

« back to all changes in this revision

Viewing changes to app/dialogs/Makefile.am

  • 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:
2
2
 
3
3
AM_CPPFLAGS = \
4
4
        -DG_LOG_DOMAIN=\"Gimp-Dialogs\" \
5
 
        @GIMP_THREAD_FLAGS@             \
6
 
        @GIMP_MP_FLAGS@
 
5
        @GTHREAD_CFLAGS@
7
6
 
8
7
INCLUDES = \
9
8
        -I$(top_builddir)       \
24
23
        \
25
24
        about-dialog.c                  \
26
25
        about-dialog.h                  \
27
 
        authors.h                       \
28
26
        channel-options-dialog.c        \
29
27
        channel-options-dialog.h        \
30
28
        convert-dialog.c                \
31
29
        convert-dialog.h                \
 
30
        desaturate-dialog.c             \
 
31
        desaturate-dialog.h             \
 
32
        fade-dialog.c                   \
 
33
        fade-dialog.h                   \
32
34
        file-open-dialog.c              \
33
35
        file-open-dialog.h              \
34
36
        file-open-location-dialog.c     \
41
43
        image-merge-layers-dialog.h     \
42
44
        image-new-dialog.c              \
43
45
        image-new-dialog.h              \
 
46
        image-properties-dialog.c       \
 
47
        image-properties-dialog.h       \
44
48
        image-scale-dialog.c            \
45
49
        image-scale-dialog.h            \
46
 
        info-dialog.c                   \
47
 
        info-dialog.h                   \
48
 
        info-window.c                   \
49
 
        info-window.h                   \
 
50
        keyboard-shortcuts-dialog.c     \
 
51
        keyboard-shortcuts-dialog.h     \
50
52
        layer-add-mask-dialog.c         \
51
53
        layer-add-mask-dialog.h         \
52
54
        layer-options-dialog.c          \
97
99
        makefile.msc
98
100
 
99
101
 
100
 
authors.h: $(top_srcdir)/authors.xml
 
102
$(srcdir)/about-dialog.c: authors.h
 
103
 
 
104
authors.h: $(top_srcdir)/authors.xml authors.xsl
101
105
if HAVE_XSLTPROC
102
106
        $(XSLTPROC) authors.xsl $< > $(@) || rm -f $(@)
103
107
endif