Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed May 17, 2006
1 parent 5c33620 commit 6f7b1c5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile.in
Expand Up @@ -150,7 +150,14 @@ dist $(distfile):
tar cf - $(DIST) | (cd $(distdir); tar xf -)
cp $(distdir)/include/SDL_config.h.default $(distdir)/include/SDL_config.h
rm -rf `find $(distdir) -name .svn`
rm -f `find $(distdir) -name '.#*'`
find $(srcdir) \( \
-name '*~' -o \
-name '*.bak' -o \
-name '*.old' -o \
-name '*.rej' -o \
-name '*.orig' -o \
-name '.#*' \) \
-exec rm -f {} \;
tar cvf - $(distdir) | gzip --best >$(distfile)
rm -rf $(distdir)

Expand Down

0 comments on commit 6f7b1c5

Please sign in to comment.