Initial commit with a non-working version
This commit is contained in:
36
Makefile.am
Normal file
36
Makefile.am
Normal 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
|
Reference in New Issue
Block a user