all: @echo "No such goal: try make help to get more info" help: @if test -r README-hacking; then \ $${PAGER:-cat} README-hacking ;\ else \ echo "No help available"; \ fi dist: ChangeLog ./install --dist ifeq ($(top_srcdir),) ifneq ($(wildcard ./git2chg.awk),) top_srcdir=. endif endif AWK=awk .PHONY: ChangeLog ChangeLog: $(AM_V_GEN)if test -d .git; then \ git log --pretty='format:commit %H%nId: %ct %an <%ae>%nSubject: %s%n%n%b%n' | \ $(AWK) -f $(top_srcdir)/git2chg.awk \ -v amend=ChangeLog.amend > ChangeLog; \ fi