Skip to content

Commit

Permalink
fix dist target of Makefile.mingw32
Browse files Browse the repository at this point in the history
  • Loading branch information
Baptiste Jonglez committed May 8, 2011
1 parent 774733c commit ee97538
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile.mingw32
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ $(EXE_NAME): $(OBJECTS)
# We must include SDL DLLs; we could have linked everything statically, but that would
# require actually cross-compiling every one of them. It is a lot simpler to bundle
# upstream DLLs.
$(TARBALL): $(EXE_NAME) $(SDL_DLL) $(SDL_MIXER_DLL)
#$(TARBALL): $(EXE_NAME) $(SDL_DLL) $(SDL_MIXER_DLL)
$(TARBALL): $(EXE_NAME) $(SDL_DLL) SDL_mixer.dll
mkdir $(DISTNAME)
cp -r $(FILES_INCLUDE_DIST) $(DISTNAME)
zip -r $@ $(DISTNAME) # zip is bad, but anyway...
Expand All @@ -112,7 +113,8 @@ $(TARBALL): $(EXE_NAME) $(SDL_DLL) $(SDL_MIXER_DLL)
clean:
# This does some basic cleaning, see 'Makefile'
$(MAKE) clean
rm -f $(SDL_DLL) $(SDL_MIXER_DLL) README-SDL.txt README-SDL_mixer.txt
# There is no use cleaning it
#rm -f $(SDL_DLL) $(SDL_MIXER_DLL) README-SDL.txt README-SDL_mixer.txt

# Clean the generated executable
execlean:
Expand Down

0 comments on commit ee97538

Please sign in to comment.