~saltmakrell/launchpad/fixtiles-osm-gps-map

« back to all changes in this revision

Viewing changes to examples/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Ilya Barygin
  • Date: 2011-12-31 11:16:10 UTC
  • mfrom: (1.1.6) (0.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20111231111610-zzpv0eoqpcl2iyz3
Tags: 0.7.3-1ubuntu1
* Merge from Debian testing, remaining changes:
  - debian/libosmgpsmap-dev.install: Don't install la-file (Policy 10.2)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Process this file with automake to produce Makefile.in
2
2
 
3
3
OSMGPSMAP_CFLAGS =          \
4
 
        $(GLIB_CFLAGS)          \
5
 
        $(GTK_CFLAGS)           \
6
 
        $(CAIRO_CFLAGS)         \
7
 
        $(SOUP22_CFLAGS)        \
 
4
    $(GLIB_CFLAGS)          \
 
5
    $(GTK_CFLAGS)           \
 
6
    $(CAIRO_CFLAGS)         \
 
7
    $(SOUP22_CFLAGS)        \
8
8
    $(SOUP24_CFLAGS)
9
9
 
10
10
OSMGPSMAP_LIBS =            \
15
15
    $(SOUP24_LIBS)
16
16
 
17
17
## Demo Application
 
18
if HAVE_GTHREAD
18
19
noinst_PROGRAMS = mapviewer
 
20
else
 
21
noinst_PROGRAMS =
 
22
endif
19
23
 
20
24
mapviewer_SOURCES =         \
21
 
        mapviewer.c
 
25
    mapviewer.c
22
26
 
23
27
mapviewer_CFLAGS =          \
24
28
    -I$(top_srcdir)/src     \
25
29
    $(WARN_CFLAGS)          \
26
30
    $(DISABLE_DEPRECATED)   \
27
 
    $(OSMGPSMAP_CFLAGS)
 
31
    $(OSMGPSMAP_CFLAGS)     \
 
32
    $(GTHREAD_CFLAGS)
28
33
 
29
34
mapviewer_LDADD =           \
30
35
    $(OSMGPSMAP_LIBS)       \
31
 
        $(top_builddir)/src/libosmgpsmap.la
 
36
    $(GTHREAD_LIBS)         \
 
37
    $(top_builddir)/src/libosmgpsmap.la
32
38
 
33
39
## Misc
34
 
EXTRA_DIST = poi.png mapviewer.ui mapviewer.js
 
40
EXTRA_DIST = poi.png mapviewer.ui mapviewer.js README
35
41