diff --git a/Makefile b/Makefile index 777207fc14249c3002d08f97606ec36d6d5f8e6c..1f8e11cbaa0c2088d45695abc5db8e6462d41c85 100644 --- a/Makefile +++ b/Makefile @@ -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