From: megacz Date: Fri, 30 Jan 2004 06:56:05 +0000 (+0000) Subject: 2003/02/28 04:22:49 X-Git-Tag: RC3~1199 X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=commitdiff_plain;h=5d21679728c5f98163696094cc2c73308d743a3c 2003/02/28 04:22:49 darcs-hash:20040130065605-2ba56-522ddf434187a9614fa8b032c2248b3b9997bcdc.gz --- diff --git a/Makefile b/Makefile index 1e8bf64..ad45441 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,7 @@ gcj := $(gcc_path)/bin/$(target)-gcj $(gcj_flags) $(gcc_flags gcc := $(gcc_path)/bin/$(target)-g++ $(gcc_flags) gcjh := $(gcc_path)/bin/$(target)-gcjh ar := $(gcc_path)/$(target)/bin/ar +strip := $(gcc_path)/$(target)/bin/strip jikes := jikes -extdirs ${JAVA_HOME}/jre/lib -nowarn # platforms @@ -188,11 +189,11 @@ dist-private: echo "copying xwt.jar to distribution area..." cp bin-Java2/xwt.jar /var/www/dist.xwt.org/xwt-$(current_build).jar.unsigned - echo "copying xwt.exe to distribution area..." - cp bin-Win32/xwt.exe /var/www/dist.xwt.org/xwt-$(current_build).exe.unsigned + echo "stripping xwt.exe and copying it to the distribution area..." + $(strip) bin-Win32/xwt.exe -o /var/www/dist.xwt.org/xwt-$(current_build).exe.unsigned echo "copying xwt.linux to distribution area..." - cp bin-Linux/xwt.linux /var/www/dist.xwt.org/xwt-$(current_build).linux.unsigned + $(strip) bin-Linux/xwt.linux -o /var/www/dist.xwt.org/xwt-$(current_build).linux.unsigned echo echo "*** DONE ******************************************"