guile-flac/Makefile.am

47 lines
1.3 KiB
Makefile
Raw Permalink Normal View History

2022-11-23 14:50:17 -05:00
## Config file for GNU Automake.
##
## Copyright (C) 2022 Steve Ayerhart <steve@ayerh.art>
##
## This file is part of Guile-FLAC.
##
## Guile-FLAC is free software: you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation, either version 3 of the
## License, or (at your option) any later version.
##
## Guile-FLAC is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Guile-FLAC. If not, see <http://www.gnu.org/licenses/>.
ACLOCAL_AMFLAGS = -I build-aux
2022-11-29 22:03:58 -05:00
SUBDIRS = build-aux src tests
2022-11-23 14:50:17 -05:00
EXTRA_DIST = \
build-aux/config.rpath \
build-aux/compile
nodist_noinst_SCRIPTS = \
pre-inst-env
gen-ChangeLog:
if test -d .git; then \
$(top_srcdir)/build-aux/gitlog-to-changelog \
194fd7d..HEAD > $(distdir)/cl-t; \
rm -f $(distdir)/ChangeLog; \
mv $(distdir)/cl-t $(distdir)/ChangeLog; \
fi
dist-hook: gen-ChangeLog
.PHONY: gen-ChangeLog
clean-go:
@cd src; make clean-go
.PHONY: clean-go
## Makefile.am ends here