Makefile: target for .gitignore

This commit is contained in:
Natanael Copa 2010-11-19 10:30:07 +00:00
parent c016772849
commit 5585756557

View File

@ -86,4 +86,11 @@ $(P).tar.bz2: $(DISTFILES)
tar -cjf $@ $(P)
rm -rf $(P)
.gitignore: Makefile
echo "*.tar.bz2" > $@
for i in $(USR_BIN_FILES); do\
echo $$i >>$@;\
done
.PHONY: install dist