Commit 2f0f35f5 authored by Christophe Mutricy's avatar Christophe Mutricy

make the install dir configurable for win32

parent 77e5b00d
...@@ -84,27 +84,29 @@ package-macosx: FORCE ...@@ -84,27 +84,29 @@ package-macosx: FORCE
(cd tmp; tar cf - .) | bzip2 -c > contrib-macosx.tar.bz2 (cd tmp; tar cf - .) | bzip2 -c > contrib-macosx.tar.bz2
rm -rf tmp rm -rf tmp
DISTDIR = usr/win32
package-win32: FORCE package-win32: FORCE
@if test -d tmp; then \ @if test -d tmp; then \
echo "Move away ./tmp, it's in the way" ; \ echo "Move away ./tmp, it's in the way" ; \
exit 1 ; \ exit 1 ; \
fi fi
mkdir -p tmp/usr/win32 mkdir -p tmp/$(DISTDIR)
tar cf - --dereference bin sbin include lib share/aclocal*\ tar cf - --dereference bin sbin include lib share/aclocal*\
share/autoconf* \ share/autoconf* \
share/automake* share/gettext* gecko-sdk\ share/automake* share/gettext* gecko-sdk\
| (cd tmp/usr/win32; tar xpf -) | (cd tmp/$(DISTDIR); tar xpf -)
#kludge for live.com #kludge for live.com
mkdir -p tmp/usr/win32/live.com mkdir -p tmp/usr/win32/live.com
for i in groupsock liveMedia UsageEnvironment BasicUsageEnvironment; do \ for i in groupsock liveMedia UsageEnvironment BasicUsageEnvironment; do \
mkdir -p tmp/usr/win32/live.com/$$i/include; \ mkdir -p tmp/$(DISTDIR)/live.com/$$i/include; \
cp -r src/live/$$i/include tmp/usr/win32/live.com/$$i; \ cp -r src/live/$$i/include tmp/$(DISTDIR)/live.com/$$i; \
cp src/live/$$i/lib$${i}.a tmp/usr/win32/live.com/$$i; \ cp src/live/$$i/lib$${i}.a tmp/$(DISTDIR)/live.com/$$i; \
done; done;
./change_prefix.sh tmp $(PREFIX) /usr/win32 ./change_prefix.sh tmp $(PREFIX) /$(DISTDIR)
# Klugy kludge # Klugy kludge
(cd tmp/usr/win32/bin; rm -f *.exe; chmod a+x *) (cd tmp/$(DISTDIR)/bin; rm -f *.exe; chmod a+x *)
(cd tmp; tar cf - usr/win32/) | bzip2 -c > contrib-`date +%Y%m%d`-win32-bin-gcc-`$(CC) --version|head -n 1|cut -f 3 -d ' '`-only.tar.bz2 (cd tmp; tar cf - $(DISTDIR)) | bzip2 -c > contrib-`date +%Y%m%d`-win32-bin-gcc-`$(CC) --version|head -n 1|cut -f 3 -d ' '`-only.tar.bz2
rm -rf tmp rm -rf tmp
FORCE: FORCE:
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