forked from GNOME/libgda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
151 lines (140 loc) · 4.07 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-gda-gi=yes --enable-introspection=yes --enable-gdaui-gi=yes --enable-gi-system-install=no --enable-vala=yes --enable-vala-extensions=yes
if HAVE_LIBXSLT
XSLT_DIR=libgda-xslt
XSLT_PC=libgda-xslt-$(GDA_ABI_VERSION).pc
endif
if HAVE_UI
UI_DIR=libgda-ui
UI_PC=libgda-ui-$(GDA_ABI_VERSION).pc
endif
if ENABLE_TOOLS
TOOLS_DIR=tools
if HAVE_UI
UI_TOOLS_DIR=control-center
endif
endif
SUBDIRS = \
po \
libgda \
providers \
libgda-report \
$(XSLT_DIR) \
$(UI_DIR) \
$(TOOLS_DIR) \
$(UI_TOOLS_DIR) \
tests \
testing \
data \
doc
example_files = \
examples/SimpleExample/Makefile \
examples/SimpleExample/example.c \
examples/SimpleExample/README \
examples/TableCopy/common.h \
examples/TableCopy/common.c \
examples/TableCopy/Makefile \
examples/TableCopy/table-copy.c \
examples/TableCopy/table-copy-easier.c \
examples/TableCopy/README \
examples/BDB/Makefile \
examples/BDB/README \
examples/BDB/access-custom.c \
examples/BDB/access-raw.c \
examples/BDB/common.h \
examples/BDB/custom-bdb-model.c \
examples/BDB/custom-bdb-model.h \
examples/BDB/fill.c \
examples/DirDataModel/Makefile \
examples/DirDataModel/README \
examples/DirDataModel/find-duplicates.c \
examples/DDL/Makefile \
examples/DDL/README \
examples/DDL/ddl.c \
examples/F-Spot/Makefile \
examples/F-Spot/README \
examples/F-Spot/VirtualConnectionSetup.dia \
examples/F-Spot/repair-path.c \
examples/README \
examples/Report/customers-report.c \
examples/Report/customers-report-docbook.c \
examples/Report/customers-report-rml.c \
examples/Report/customers-report-rml.rml \
examples/Report/customers-report-spec.xml \
examples/Report/schema-report.c \
examples/Report/schema-report-spec.xml \
examples/Report/Makefile \
examples/Report/README \
examples/Virtual/Makefile \
examples/Virtual/README \
examples/Virtual/city.csv \
examples/Virtual/country.csv \
examples/Virtual/virtual-test.c \
examples/XSLT/Makefile \
examples/XSLT/README \
examples/XSLT/data.xml \
examples/XSLT/data2.xml \
examples/XSLT/test.xsl \
examples/XSLT/transform.c \
examples/MetaStore/Makefile \
examples/MetaStore/README \
examples/MetaStore/background.c \
examples/MetaStore/example.c \
examples/Tree/Makefile \
examples/Tree/README \
examples/Tree/example.c \
examples/SqlBuilder/Makefile \
examples/SqlBuilder/README \
examples/SqlBuilder/example.c \
examples/AsyncExec/Makefile \
examples/AsyncExec/README \
examples/AsyncExec/example.c \
examples/WritableSelect/README \
examples/WritableSelect/example.c \
examples/WritableSelect/Makefile \
examples/SimpleUIForm/README \
examples/SimpleUIForm/example.c \
examples/SimpleUIForm/Makefile \
examples/SimpleUIForm/ScreenShot.png \
examples/Blobs/blobtest.c \
examples/Blobs/Makefile \
examples/Blobs/README \
examples/Blobs/testblob.db \
examples/Gir/Makefile \
examples/Gir/README \
examples/Gir/libgda.js \
examples/LdapBrowser/Makefile \
examples/LdapBrowser/README \
examples/LdapBrowser/ldap-browser.c \
examples/CustomUIPlugin/Makefile \
examples/CustomUIPlugin/README \
examples/CustomUIPlugin/custom-entry-password.c \
examples/CustomUIPlugin/custom-entry-password.h \
examples/CustomUIPlugin/custom-entry-password.xml \
examples/CustomUIPlugin/libmain.c
EXTRA_DIST = \
COPYING \
libgda.spec \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
mkinstalldirs \
$(example_files) \
getsp.class \
getsp.java
dist-hook:
@if test -d "$(srcdir)/.git"; \
then \
echo Creating ChangeLog && \
( cd "$(top_srcdir)" && \
echo '# Generated by Makefile. Do not edit.'; echo; \
$(top_srcdir)/missing --run $(top_srcdir)/gitlog2changelog.py ) > ChangeLog.tmp \
&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
|| ( rm -f ChangeLog.tmp ; \
echo Failed to generate ChangeLog >&2 ); \
else \
echo A git clone is required to generate a ChangeLog >&2; \
fi
pkgconfigdir=$(libdir)/pkgconfig
pkgconfig_DATA = libgda-$(GDA_ABI_VERSION).pc libgda-report-$(GDA_ABI_VERSION).pc $(XSLT_PC) $(UI_PC)
all-local: libgda.spec
CLEANFILES = intltool-extract intltool-merge intltool-update