~ubuntu-branches/debian/jessie/aisleriot/jessie

« back to all changes in this revision

Viewing changes to src/lib/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach, Jeremy Bicha, Jordi Mallach
  • Date: 2012-04-22 12:49:26 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120422124926-gmr0thwstl91jt1n
Tags: 1:3.4.1-1
[ Jeremy Bicha ]
* New upstream release
* debian/control.in: (Build)-depend on guile-2.0
* debian/*.install: Cards files are now stored as zipped .svg's
* debian/patches/99_format-security.patch: Dropped, applied upstream

[ Jordi Mallach ]
* New upstream release.
* Update copyright to final version of the machine-readable 1.0 spec.
* Bump Standards Version to 3.9.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
        ar-sound.h \
37
37
        ar-string-utils.c \
38
38
        ar-string-utils.h \
 
39
        $(NULL)
 
40
 
 
41
nodist_libaisleriot_la_SOURCES = \
39
42
        $(BUILT_SOURCES) \
40
43
        $(NULL)
41
44
 
67
70
libaisleriot_la_CPPFLAGS = \
68
71
        -I$(top_srcdir) \
69
72
        -I$(top_builddir) \
 
73
        -DPKGLIBDIR="\"$(pkglibdir)\"" \
70
74
        -DPKGDATADIR="\"$(pkgdatadir)\"" \
71
75
        -DPREFIX="\"$(prefix)\"" \
 
76
        -DLIBDIR="\"$(libdir)\"" \
72
77
        -DDATADIR="\"$(datadir)\"" \
73
78
        -DCOMMON_DATADIR="\"$(datadir)/gnome-games-common\"" \
74
79
        -DSCORESDIR="\"$(scoredir)\"" \
75
80
        $(AM_CPPFLAGS)
76
81
 
77
82
libaisleriot_la_CFLAGS = \
78
 
        $(GTK_CFLAGS) \
79
 
        $(GIO_CFLAGS) \
 
83
        $(AISLERIOT_CFLAGS) \
80
84
        $(AM_CFLAGS)
81
85
 
82
86
libaisleriot_la_LIBADD = \
83
 
        $(GTK_LIBS) \
84
 
        $(GIO_LIBS)
85
 
 
86
 
if HAVE_RSVG
87
 
libaisleriot_la_CFLAGS += $(RSVG_CFLAGS)
88
 
libaisleriot_la_LIBADD += $(RSVG_LIBS)
89
 
endif # HAVE_RSVG
90
 
 
91
 
if HAVE_GNOME
92
 
libaisleriot_la_CFLAGS += $(GNOME_CFLAGS)
93
 
libaisleriot_la_LIBADD += $(GNOME_LIBS)
94
 
endif
95
 
 
96
 
if ENABLE_SOUND
97
 
libaisleriot_la_CFLAGS += $(CANBERRA_GTK_CFLAGS)
98
 
libaisleriot_la_LIBADD += $(CANBERRA_GTK_LIBS)
99
 
endif
 
87
        $(AISLERIOT_LIBS)
100
88
 
101
89
gsettingsschema_in_files = org.gnome.Patience.WindowState.gschema.xml.in
102
90
gsettings_SCHEMAS = $(gsettingsschema_in_files:.gschema.xml.in=.gschema.xml)
117
105
 
118
106
if HAVE_RSVG
119
107
 
120
 
pkglib_PROGRAMS = ar-cards-renderer
 
108
pkglibexec_PROGRAMS = ar-cards-renderer
121
109
 
122
110
ar_cards_renderer_SOURCES = \
123
111
        render-cards.c
128
116
        $(AM_CPPFLAGS)
129
117
 
130
118
ar_cards_renderer_CFLAGS = \
131
 
        $(GTK_CFLAGS) \
132
 
        $(RSVG_CFLAGS) \
 
119
        $(AISLERIOT_CFLAGS) \
133
120
        $(AM_CFLAGS)
134
121
 
135
122
ar_cards_renderer_LDFLAGS = \
137
124
 
138
125
ar_cards_renderer_LDADD = \
139
126
        libaisleriot.la \
140
 
        $(GTK_LIBS) \
141
 
        $(RSVG_LIBS)
142
 
 
143
 
if WITH_GTHREAD
144
 
ar_cards_renderer_CFLAGS += $(GHTREAD_CFLAGS)
145
 
ar_cards_renderer_LDADD += $(GTHREAD_LIBS)
146
 
endif # WITH_GTHREAD
 
127
        $(AISLERIOT_LIBS)
147
128
 
148
129
endif # HAVE_RSVG
149
130