build: added custom script for configuring a home build
[adg-lua.git] / Makefile.am
blobff89c89f8c12ce5567adff2e82d6f02d86917361
1 include $(top_srcdir)/build/Makefile.am.common
3 ACLOCAL_AMFLAGS=                -I build
5 BUILT_SOURCES=                  ChangeLog
7 EXTRA_DIST=                     COPYING \
8                                 INSTALL \
9                                 NEWS \
10                                 README \
11                                 THANKS \
12                                 $(BUILT_SOURCES) \
13                                 build/configure-home
15 SUBDIRS=                        cpml \
16                                 adg \
17                                 examples
20 # Creating ChangeLog files from git log:
21 # idea stolen from cairo/build/Makefile.am.changelog
22 ChangeLog:
23         $(AM_V_GEN)if test -d "$(srcdir)/.git"; then \
24           ( cd "$(srcdir)" && git log --stat > $@ ) ; \
25         else \
26           echo ' *WARN  A git checkout is required to generate $@' ; \
27           touch $@ ; \
28         fi