X-Git-Url: https://code.delx.au/pulseaudio/blobdiff_plain/9db70682d68cc4fef9314677b6427582e5d5c8f2..edc56a7f7a993aa60b979a4093e39f66e7f7a8c8:/Makefile.am diff --git a/Makefile.am b/Makefile.am index 1b77187d..b32b46e9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,3 @@ -# $Id$ -# # This file is part of PulseAudio. # # PulseAudio is free software; you can redistribute it and/or modify @@ -18,7 +16,7 @@ # USA. EXTRA_DIST = bootstrap.sh LICENSE GPL LGPL doxygen/Makefile.am doxygen/Makefile.in doxygen/doxygen.conf.in README todo -SUBDIRS=libltdl src doxygen +SUBDIRS=src doxygen man MAINTAINERCLEANFILES = noinst_DATA = @@ -45,4 +43,20 @@ homepage: all dist doxygen doxygen: $(MAKE) -C doxygen doxygen +eolspace: + find \( -name '*.c' -o -name '*.h' -o -name 'Makefile.am' \) -exec perl -i -pe 's/\s+\n$$/\1\n/;' \{\} \; + +untabify: + find \( -name '*.c' -o -name '*.h' \) -exec perl -i -pe 's/\t/ /g;' \{\} \; + +fedora-snapshot: dist + cp $(distdir).tar.gz $$HOME/cvs.fedora/pulseaudio/devel/$(distdir).git`date +%Y%m%d`.tar.gz + +dist-hook: + if test -d .git ; then \ + git pull ; \ + chmod u+w ${distdir}/ChangeLog || true ; \ + git-changelog.perl > ${distdir}/ChangeLog ; \ + fi + .PHONY: homepage distcleancheck doxygen