shithub: choc

ref: 3d641baeb5a3cfce3c35b23af3486e28541c2aac
dir: /pkg/win32/GNUmakefile/

View raw version

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

DOC_FILES += README.OPL

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
	$(TOPLEVEL)/man/simplecpp -D_WIN32 -DPRECOMPILED  \
	         < $(TOPLEVEL)/man/INSTALL.template       \
	         > staging/INSTALL.txt
	unix2dos staging/INSTALL.txt

clean:
	rm -f $(ZIP)
	rm -rf staging