From a7dc3875f15f9600e011c313c8846de6af3a2c8c Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 12 Oct 2010 08:26:50 -0500 Subject: contrib/ follow-up work * Add a .gitignore file * Use the same 'GEN' output we have in the scripts/ Makefile when doing our edits on the .in files * Remove PKGBUILD.vim and vimprojects from our edit list, they have no need to be in the list Signed-off-by: Dan McGee --- contrib/Makefile.am | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'contrib/Makefile.am') diff --git a/contrib/Makefile.am b/contrib/Makefile.am index dd0b767c..01997631 100644 --- a/contrib/Makefile.am +++ b/contrib/Makefile.am @@ -1,5 +1,4 @@ OURFILES = \ - PKGBUILD.vim \ bacman \ bash_completion \ pacdiff \ @@ -7,12 +6,11 @@ OURFILES = \ pacscripts \ pacsearch \ pactree \ - vimprojects \ wget-xdelta.sh \ zsh_completion EXTRA_DIST = \ - PKGBUILD.vim.in \ + PKGBUILD.vim \ bacman.in \ bash_completion.in \ pacdiff.in \ @@ -20,7 +18,7 @@ EXTRA_DIST = \ pacscripts.in \ pacsearch.in \ pactree.in \ - vimprojects.in \ + vimprojects \ wget-xdelta.sh.in \ zsh_completion.in \ README @@ -34,9 +32,10 @@ edit = sed \ -e 's|@BASH[@]|$(BASH)|g' $(OURFILES): Makefile + @echo ' ' GEN $@; @rm -f $@ $@.tmp @cp -a $@.in $@.tmp - $(edit) $@.in >$@.tmp + @$(edit) $@.in >$@.tmp @mv $@.tmp $@ all-am: $(OURFILES) -- cgit v1.2.3-24-g4f1b