fruitjam-doom/pkg/win32/GNUmakefile
Simon Howard 6fb7afc47c Add "clean" target to package makefiles.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1791
2010-01-05 17:20:58 +00:00

32 lines
790 B
Makefile

include ../config.make
TOPLEVEL=../..
EXE_FILES=$(TOPLEVEL)/src/$(PACKAGE_TARNAME).exe \
$(TOPLEVEL)/src/chocolate-server.exe \
$(TOPLEVEL)/setup/chocolate-setup.exe
DLL_FILES=$(TOPLEVEL)/src/SDL.dll \
$(TOPLEVEL)/src/SDL_mixer.dll \
$(TOPLEVEL)/src/SDL_net.dll
ZIP=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-win32.zip
$(ZIP) : staging
zip -j -r $@ staging/
staging: $(EXE_FILES) $(DLL_FILES) $(patsubst %,../../%,$(DOC_FILES))
rm -rf staging
mkdir staging
cp $(EXE_FILES) $(DLL_FILES) staging/
$(STRIP) staging/*.exe
for f in $(DOC_FILES); do \
cp $(TOPLEVEL)/$$f staging/$$f.txt; \
unix2dos staging/$$f.txt; \
done
clean:
rm -f $(ZIP)
rm -rf staging