From 76b62fd00130a9e8606aeaab82659bddb942dded Mon Sep 17 00:00:00 2001 From: bellard Date: Tue, 28 Oct 2003 00:47:44 +0000 Subject: [PATCH] added binary archive git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@422 c046a42c-6fe2-441c-8c8c-71466251a162 --- Makefile | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index b3da266066..efec671b7b 100644 --- a/Makefile +++ b/Makefile @@ -66,17 +66,19 @@ FILE=qemu-$(shell cat VERSION) tar: rm -rf /tmp/$(FILE) cp -r . /tmp/$(FILE) - ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) ) + ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS ) rm -rf /tmp/$(FILE) -# generate a binary distribution including the test binary environnment -BINPATH=/usr/local/qemu-i386 - +# generate a binary distribution tarbin: - tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \ - $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr - tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \ - $(BINPATH)/wine + ( cd / ; tar zcvf ~/qemu-$(VERSION)-i386.tar.gz \ + $(prefix)/bin/qemu $(prefix)/bin/qemu-fast \ + $(prefix)/bin/qemu-i386 \ + $(prefix)/bin/qemu-arm \ + $(prefix)/bin/qemu-sparc \ + $(sharedir)/bios.bin \ + $(sharedir)/vgabios.bin \ + $(mandir)/man1/qemu.1 ) ifneq ($(wildcard .depend),) include .depend