Commit 5fa75a1f authored by Sam Hocevar's avatar Sam Hocevar

* ./Makefile: fixed "make package-win32".

parent 5bbe0409
...@@ -318,12 +318,17 @@ package-win32: ...@@ -318,12 +318,17 @@ package-win32:
for file in AUTHORS COPYING ChangeLog README FAQ TODO ; \ for file in AUTHORS COPYING ChangeLog README FAQ TODO ; \
do cp $$file tmp/$${file}.txt ; \ do cp $$file tmp/$${file}.txt ; \
unix2dos tmp/$${file}.txt ; done unix2dos tmp/$${file}.txt ; done
mkdir tmp/modules mkdir tmp/plugins
cp $(PLUGINS:%=modules/%.so) tmp/modules/
# don't include these two
#rm -f tmp/modules/gtk.so tmp/modules/sdl.so
ifneq (,$(PLUGINS)) ifneq (,$(PLUGINS))
for i in $(PLUGINS) ; do if test $$i != intfwin ; then $(STRIP) tmp/modules/$$i.so ; fi ; done for i in $(PLUGINS) ; do \
DIR=`echo $$i | cut -f1 -d/` ; \
mkdir -p tmp/plugins/$$DIR ; \
cp modules/$$i.so tmp/plugins/$$DIR ; \
if test $$i != gui/win32/win32 ; then \
$(STRIP) \
tmp/plugins/$$DIR/`echo $$i | sed -e 's@.*/@@'`.so ; \
fi ; \
done
endif endif
mkdir tmp/share mkdir tmp/share
for file in default8x16.psf default8x9.psf ; \ for file in default8x16.psf default8x9.psf ; \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment