summaryrefslogtreecommitdiff
path: root/pkg/win32/GNUmakefile
blob: 93c6abe150204a12315eae3ea29a6269480a1b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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

$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-win32.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