-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
51 lines (44 loc) · 1.26 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
lib_LTLIBRARIES = libaccounts.la
libaccounts_la_CFLAGS = $(LIBACCOUNTS_CFLAGS)
libaccounts_la_LDFLAGS = \
-Wl,--as-needed $(LIBACCOUNTS_LIBS) \
-Wl,--no-undefined -version-info 1:0:1
BUILT_SOURCES = \
account-marshal.c \
account-marshal.h
libaccounts_la_SOURCES = \
account-plugin-loader.c \
account-plugin.c \
accounts-list.c \
account-item.c \
account-service.c \
account-plugin-manager.c \
account-edit-context.c \
account-dialog-context.c \
account-wizard-context.c \
account-marshal.c
account-marshal.c: account-marshal.list
$(GLIB_GENMARSHAL) --prefix=account_marshal $< --header --body \
--internal > xgen-$(@F) \
&& ( cmp -s xgen-$(@F) $@ || cp xgen-$(@F) $@ ) \
&& rm -f xgen-$(@F)
account-marshal.h: account-marshal.list
$(GLIB_GENMARSHAL) --prefix=account_marshal $< --header \
--internal > xgen-$(@F) \
&& ( cmp -s xgen-$(@F) $@ || cp xgen-$(@F) $@ ) \
&& rm -f xgen-$(@F)
pkginclude_HEADERS = \
account-dialog-context.h \
account-edit-context.h \
account-error.h \
account-item.h \
account-plugin.h \
account-plugin-loader.h \
account-plugin-manager.h \
account-service.h \
accounts-list.h \
account-wizard-context.h
noinst_HEADERS = \
account-marshal.h
CLEANFILES = $(BUILT_SOURCES)
MAINTAINERCLEANFILES = Makefile.in