Initial commit with a non-working version

This commit is contained in:
2017-03-28 11:00:23 +02:00
commit ffc118c47c
82 changed files with 18951 additions and 0 deletions

36
Makefile.am Normal file
View File

@@ -0,0 +1,36 @@
SUBDIRS = data src po
EXTRA_DIST = AUTHORS
AUTHORS:
$(AM_V_GEN)if test -d "$(srcdir)/.git"; \
then \
echo Creating $@ && \
( cd "$(top_srcdir)" && \
echo '# Generated by Makefile. Do not edit.'; echo; \
git log --no-merges --pretty=format:"%an" $(SUBDIRS) \
| sort | uniq ) > $@.tmp \
&& mv -f $@.tmp $@ \
|| ( rm -f $@.tmp ; \
echo Failed to generate $@ >&2 ); \
else touch $@; fi
# Generate the ChangeLog.
@GENERATE_CHANGELOG_RULES@
dist-hook: dist-ChangeLog
GITIGNOREFILES = \
**/*.swp \
*.o \
aclocal.m4 \
build-aux \
ChangeLog \
config \
config.h.in \
gtk-doc.m4 \
gtk-doc.make \
INSTALL \
$(NULL)
-include $(top_srcdir)/git.mk