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
|
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
if HAVE_LIBXSLT
XSLT_DIR=libgda-xslt
endif
SUBDIRS = \
po \
libgda \
providers \
libgda-report \
$(XSLT_DIR) \
tools \
tests \
testing \
data \
doc
example_files = \
samples/SimpleExample/Makefile \
samples/SimpleExample/example.c \
samples/SimpleExample/README \
samples/TableCopy/common.h \
samples/TableCopy/common.c \
samples/TableCopy/Makefile \
samples/TableCopy/table-copy.c \
samples/TableCopy/table-copy-easier.c \
samples/TableCopy/README \
samples/BDB/Makefile \
samples/BDB/README \
samples/BDB/access-custom.c \
samples/BDB/access-raw.c \
samples/BDB/common.h \
samples/BDB/custom-bdb-model.c \
samples/BDB/custom-bdb-model.h \
samples/BDB/fill.c \
samples/DirDataModel/Makefile \
samples/DirDataModel/README \
samples/DirDataModel/find-duplicates.c \
samples/DDL/Makefile \
samples/DDL/README \
samples/DDL/ddl.c \
samples/F-Spot/Makefile \
samples/F-Spot/README \
samples/F-Spot/VirtualConnectionSetup.dia \
samples/F-Spot/repair-path.c \
samples/README \
samples/Report/customers-report.c \
samples/Report/customers-report-docbook.c \
samples/Report/customers-report-rml.c \
samples/Report/customers-report-rml.rml \
samples/Report/customers-report-spec.xml \
samples/Report/Makefile
samples/Report/README
samples/Virtual/Makefile \
samples/Virtual/README \
samples/Virtual/city.csv \
samples/Virtual/country.csv \
samples/Virtual/virtual-test.c \
samples/XSLT/Makefile \
samples/XSLT/README \
samples/XSLT/data.xml \
samples/XSLT/data2.xml \
samples/XSLT/test.xsl \
samples/XSLT/transform.c \
samples/WritableSelect/README \
samples/WritableSelect/example.c \
samples/WritableSelect/Makefile
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 libgda-xslt-$(GDA_ABI_VERSION).pc
all-local: libgda.spec
CLEANFILES = intltool-extract intltool-merge intltool-update
|