Commit 76b62fd00130a9e8606aeaab82659bddb942dded
1 parent
b1f64575
added binary archive
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@422 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
10 additions
and
8 deletions
Makefile
| ... | ... | @@ -66,17 +66,19 @@ FILE=qemu-$(shell cat VERSION) |
| 66 | 66 | tar: |
| 67 | 67 | rm -rf /tmp/$(FILE) |
| 68 | 68 | cp -r . /tmp/$(FILE) |
| 69 | - ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) ) | |
| 69 | + ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS ) | |
| 70 | 70 | rm -rf /tmp/$(FILE) |
| 71 | 71 | |
| 72 | -# generate a binary distribution including the test binary environnment | |
| 73 | -BINPATH=/usr/local/qemu-i386 | |
| 74 | - | |
| 72 | +# generate a binary distribution | |
| 75 | 73 | tarbin: |
| 76 | - tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \ | |
| 77 | - $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr | |
| 78 | - tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \ | |
| 79 | - $(BINPATH)/wine | |
| 74 | + ( cd / ; tar zcvf ~/qemu-$(VERSION)-i386.tar.gz \ | |
| 75 | + $(prefix)/bin/qemu $(prefix)/bin/qemu-fast \ | |
| 76 | + $(prefix)/bin/qemu-i386 \ | |
| 77 | + $(prefix)/bin/qemu-arm \ | |
| 78 | + $(prefix)/bin/qemu-sparc \ | |
| 79 | + $(sharedir)/bios.bin \ | |
| 80 | + $(sharedir)/vgabios.bin \ | |
| 81 | + $(mandir)/man1/qemu.1 ) | |
| 80 | 82 | |
| 81 | 83 | ifneq ($(wildcard .depend),) |
| 82 | 84 | include .depend | ... | ... |