~ubuntu-branches/ubuntu/trusty/libgnomecanvas/trusty

« back to all changes in this revision

Viewing changes to .pc/02_link.patch/demos/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Josselin Mouette
  • Date: 2013-12-27 14:31:10 UTC
  • mfrom: (2.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20131227143110-u4fps5hlpp3za5ee
Tags: 2.30.3-2
* Switch to multiarch. Closes: #695556.
  + Require a MA libglade.
  + Update build-dependencies.
  + Make library and devel packages MA: same, make -common MA: 
    foreign.
  + Update installation paths.
* Drop gnome:Version.
* Move to section oldlibs.
* Use dh-autoreconf.
* 99_ltmain_as-needed.patch: dropped, obsolete.
* 02_link.patch: new patch. Correctly link the demos.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES = \
 
2
        -I$(top_srcdir)                                 \
 
3
        -I$(top_builddir)                               \
 
4
        $(WARN_CFLAGS)                                  \
 
5
        $(LIBGNOMECANVAS_CFLAGS)                        \
 
6
        -DGNOMECANVASLIBDIR=\""$(libdir)"\"             \
 
7
        -DGNOMECANVASDATADIR=\""$(datadir)"\"           \
 
8
        -DGNOMECANVASPIXMAPDIR=\""$(datadir)/pixmaps"\" \
 
9
        -DGNOMECANVASBINDIR=\""$(bindir)"\"             \
 
10
        -DGNOMECANVASLOCALSTATEDIR=\""$(localstatedir)"\"       \
 
11
        -DGTK_VERSION=\""$(GTK_VERSION)"\"              \
 
12
        -DG_LOG_DOMAIN=\"GnomeCanvas\"
 
13
 
 
14
LDADD = \
 
15
        $(top_builddir)/libgnomecanvas/libgnomecanvas-2.la \
 
16
        $(INTLLIBS)
 
17
 
 
18
noinst_PROGRAMS=\
 
19
        canvas_demo \
 
20
        dash-demo
 
21
 
 
22
canvas_demo_SOURCES =           \
 
23
        canvas.c                \
 
24
        canvas-primitives.c     \
 
25
        canvas-arrowhead.c      \
 
26
        canvas-features.c       \
 
27
        canvas-fifteen.c        \
 
28
        canvas-rich-text.c      \
 
29
        canvas-curve.c          \
 
30
        canvas_demo.h
 
31
 
 
32
EXTRA_DIST =                    \
 
33
        toroid.png
 
34
 
 
35
 
 
36