~binli/ubuntu/vivid/modemmanager/lp1441095

« back to all changes in this revision

Viewing changes to libmm-glib/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Guido Günther, Michael Biebl
  • Date: 2014-06-25 02:23:09 UTC
  • mfrom: (20.2.2 sid)
  • Revision ID: package-import@ubuntu.com-20140625022309-43papaenj5ikbx3y
Tags: 1.2.0-1
[ Guido Günther ]
* New upstream version 1.2.0 (Closes: #731851)
* Update patches
* Install locale files
* Require newer libqmi
* Update symbols file
* Ship gobject introspection data
* Ship vala bindings

[ Michael Biebl ]
* Use canonical URI for Vcs-Git
* Use gir dh addon
* Update extendend package description (Closes: #744180)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        mm-modem-time.c \
28
28
        mm-modem-firmware.h \
29
29
        mm-modem-firmware.c \
 
30
        mm-modem-signal.h \
 
31
        mm-modem-signal.c \
 
32
        mm-modem-oma.h \
 
33
        mm-modem-oma.c \
30
34
        mm-sim.h \
31
35
        mm-sim.c \
32
36
        mm-sms.h \
61
65
        mm-network-timezone.h \
62
66
        mm-network-timezone.c \
63
67
        mm-firmware-properties.h \
64
 
        mm-firmware-properties.c
 
68
        mm-firmware-properties.c \
 
69
        mm-cdma-manual-activation-properties.h \
 
70
        mm-cdma-manual-activation-properties.c \
 
71
        mm-signal.h \
 
72
        mm-signal.c
65
73
 
66
74
libmm_glib_la_CPPFLAGS = \
67
 
        $(LIBMM_GLIB_CFLAGS) \
 
75
        -I$(srcdir) \
68
76
        -I$(top_srcdir) \
 
77
        -I$(top_builddir) \
69
78
        -I$(top_srcdir)/include \
70
79
        -I$(top_builddir)/include \
71
80
        -I${top_srcdir}/libmm-glib/generated \
72
81
        -I${top_builddir}/libmm-glib/generated \
73
 
        -DLIBMM_GLIB_COMPILATION
 
82
        -DLIBMM_GLIB_COMPILATION \
 
83
        $(AM_CPPFLAGS)
 
84
 
 
85
libmm_glib_la_CFLAGS = \
 
86
        $(LIBMM_GLIB_CFLAGS) \
 
87
        $(AM_CFLAGS)
74
88
 
75
89
libmm_glib_la_LIBADD = \
76
90
        ${top_builddir}/libmm-glib/generated/libmm-generated.la \
93
107
        mm-modem-location.h \
94
108
        mm-modem-time.h \
95
109
        mm-modem-firmware.h \
 
110
        mm-modem-signal.h \
 
111
        mm-modem-oma.h \
96
112
        mm-modem-simple.h \
97
113
        mm-sim.h \
98
114
        mm-sms.h \
109
125
        mm-location-cdma-bs.h \
110
126
        mm-unlock-retries.h \
111
127
        mm-network-timezone.h \
112
 
        mm-firmware-properties.h
 
128
        mm-firmware-properties.h \
 
129
        mm-cdma-manual-activation-properties.h \
 
130
        mm-signal.h
 
131
 
 
132
CLEANFILES =
 
133
 
 
134
# Introspection
 
135
 
 
136
if HAVE_INTROSPECTION
 
137
 
 
138
GENERATED_H = \
 
139
        mm-enums-types.h \
 
140
        mm-errors-types.h \
 
141
        mm-gdbus-manager.h \
 
142
        mm-gdbus-sim.h \
 
143
        mm-gdbus-sms.h \
 
144
        mm-gdbus-bearer.h \
 
145
        mm-gdbus-modem.h
 
146
 
 
147
GENERATED_C = \
 
148
        mm-enums-types.c \
 
149
        mm-errors-types.c \
 
150
        mm-errors-quarks.c \
 
151
        mm-gdbus-manager.c \
 
152
        mm-gdbus-sim.c \
 
153
        mm-gdbus-sms.c \
 
154
        mm-gdbus-bearer.c \
 
155
        mm-gdbus-modem.c
 
156
 
 
157
PUBLIC_H = \
 
158
        ModemManager-names.h \
 
159
        ModemManager-version.h
 
160
        ModemManager-enums.h \
 
161
        ModemManager-errors.h \
 
162
        ModemManager.h
 
163
 
 
164
INTROSPECTION_GIRS = ModemManager-1.0.gir
 
165
INTROSPECTION_SCANNER_ARGS = --warn-all
 
166
INTROSPECTION_COMPILER_ARGS =
 
167
 
 
168
ModemManager-1.0.gir: libmm-glib.la
 
169
ModemManager_1_0_gir_INCLUDES = GLib-2.0 GObject-2.0 Gio-2.0
 
170
ModemManager_1_0_gir_CFLAGS = $(libmm_glib_la_CPPFLAGS)
 
171
ModemManager_1_0_gir_LIBS = libmm-glib.la
 
172
ModemManager_1_0_gir_EXPORT_PACKAGES = libmm-glib
 
173
ModemManager_1_0_gir_SCANNERFLAGS = \
 
174
        --c-include "libmm-glib.h" \
 
175
        --identifier-prefix=MM \
 
176
        --identifier-prefix=Mm \
 
177
        --symbol-prefix=mm
 
178
ModemManager_1_0_gir_FILES = \
 
179
        $(include_HEADERS) \
 
180
        $(filter-out %.h,$(libmm_glib_la_SOURCES)) \
 
181
        $(filter %.c,$(libmm_glib_la_SOURCES)) \
 
182
        $(addprefix generated/,$(GENERATED_H)) \
 
183
        $(addprefix generated/,$(GENERATED_C)) \
 
184
        $(addprefix ../include/,$(PUBLIC_H)) \
 
185
        $(NULL)
 
186
 
 
187
girdir = $(datadir)/gir-1.0
 
188
nodist_gir_DATA = $(INTROSPECTION_GIRS)
 
189
 
 
190
typelibdir = $(libdir)/girepository-1.0
 
191
nodist_typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
 
192
 
 
193
CLEANFILES += $(nodist_gir_DATA) $(nodist_typelib_DATA)
 
194
 
 
195
endif # HAVE_INTROSPECTION
 
196
 
 
197
-include $(INTROSPECTION_MAKEFILE)