Commit 40e8a53b1e4a3546c90ada6fbcd263f074090e71
1 parent
f53bca18
Fix and rearrange 'tarbin' Makefile rule
This patch fixes the 'tarbin' Makefile rule (which was broken due to a missing '\' for line-continuation), and also rearranges that rule to match the ordering that is used in the configure script, so that the list can be checked more easily, to avoid conflicts, etc. Signed-off-by: Stuart Brady <stuart.brady@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6149 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
28 additions
and
27 deletions
Makefile
| ... | ... | @@ -314,39 +314,39 @@ tar: |
| 314 | 314 | tarbin: |
| 315 | 315 | cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \ |
| 316 | 316 | $(bindir)/qemu \ |
| 317 | - $(bindir)/qemu-system-ppc \ | |
| 318 | - $(bindir)/qemu-system-ppc64 \ | |
| 319 | - $(bindir)/qemu-system-ppcemb \ | |
| 320 | - $(bindir)/qemu-system-sparc \ | |
| 321 | 317 | $(bindir)/qemu-system-x86_64 \ |
| 318 | + $(bindir)/qemu-system-arm \ | |
| 319 | + $(bindir)/qemu-system-cris \ | |
| 320 | + $(bindir)/qemu-system-m68k \ | |
| 322 | 321 | $(bindir)/qemu-system-mips \ |
| 323 | 322 | $(bindir)/qemu-system-mipsel \ |
| 324 | 323 | $(bindir)/qemu-system-mips64 \ |
| 325 | 324 | $(bindir)/qemu-system-mips64el \ |
| 326 | - $(bindir)/qemu-system-arm \ | |
| 327 | - $(bindir)/qemu-system-m68k \ | |
| 325 | + $(bindir)/qemu-system-ppc \ | |
| 326 | + $(bindir)/qemu-system-ppcemb \ | |
| 327 | + $(bindir)/qemu-system-ppc64 \ | |
| 328 | 328 | $(bindir)/qemu-system-sh4 \ |
| 329 | 329 | $(bindir)/qemu-system-sh4eb \ |
| 330 | - $(bindir)/qemu-system-cris \ | |
| 330 | + $(bindir)/qemu-system-sparc \ | |
| 331 | 331 | $(bindir)/qemu-i386 \ |
| 332 | 332 | $(bindir)/qemu-x86_64 \ |
| 333 | - $(bindir)/qemu-arm \ | |
| 334 | - $(bindir)/qemu-armeb \ | |
| 335 | - $(bindir)/qemu-sparc \ | |
| 336 | - $(bindir)/qemu-sparc32plus \ | |
| 337 | - $(bindir)/qemu-sparc64 \ | |
| 338 | - $(bindir)/qemu-ppc \ | |
| 339 | - $(bindir)/qemu-ppc64 \ | |
| 340 | - $(bindir)/qemu-ppc64abi32 \ | |
| 341 | - $(bindir)/qemu-mips \ | |
| 342 | - $(bindir)/qemu-mipsel \ | |
| 343 | - $(bindir)/qemu-alpha \ | |
| 344 | - $(bindir)/qemu-m68k \ | |
| 345 | - $(bindir)/qemu-sh4 \ | |
| 346 | - $(bindir)/qemu-sh4eb \ | |
| 347 | - $(bindir)/qemu-cris \ | |
| 348 | - $(bindir)/qemu-img \ | |
| 349 | - $(bindir)/qemu-nbd \ | |
| 333 | + $(bindir)/qemu-alpha \ | |
| 334 | + $(bindir)/qemu-arm \ | |
| 335 | + $(bindir)/qemu-armeb \ | |
| 336 | + $(bindir)/qemu-cris \ | |
| 337 | + $(bindir)/qemu-m68k \ | |
| 338 | + $(bindir)/qemu-mips \ | |
| 339 | + $(bindir)/qemu-mipsel \ | |
| 340 | + $(bindir)/qemu-ppc \ | |
| 341 | + $(bindir)/qemu-ppc64 \ | |
| 342 | + $(bindir)/qemu-ppc64abi32 \ | |
| 343 | + $(bindir)/qemu-sh4 \ | |
| 344 | + $(bindir)/qemu-sh4eb \ | |
| 345 | + $(bindir)/qemu-sparc \ | |
| 346 | + $(bindir)/qemu-sparc64 \ | |
| 347 | + $(bindir)/qemu-sparc32plus \ | |
| 348 | + $(bindir)/qemu-img \ | |
| 349 | + $(bindir)/qemu-nbd \ | |
| 350 | 350 | $(datadir)/bios.bin \ |
| 351 | 351 | $(datadir)/vgabios.bin \ |
| 352 | 352 | $(datadir)/vgabios-cirrus.bin \ |
| ... | ... | @@ -354,13 +354,14 @@ tarbin: |
| 354 | 354 | $(datadir)/video.x \ |
| 355 | 355 | $(datadir)/openbios-sparc32 \ |
| 356 | 356 | $(datadir)/openbios-sparc64 \ |
| 357 | - $(datadir)/pxe-ne2k_pci.bin \ | |
| 357 | + $(datadir)/pxe-ne2k_pci.bin \ | |
| 358 | 358 | $(datadir)/pxe-rtl8139.bin \ |
| 359 | - $(datadir)/pxe-pcnet.bin \ | |
| 359 | + $(datadir)/pxe-pcnet.bin \ | |
| 360 | 360 | $(datadir)/pxe-e1000.bin \ |
| 361 | 361 | $(docdir)/qemu-doc.html \ |
| 362 | 362 | $(docdir)/qemu-tech.html \ |
| 363 | - $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 | |
| 363 | + $(mandir)/man1/qemu.1 \ | |
| 364 | + $(mandir)/man1/qemu-img.1 \ | |
| 364 | 365 | $(mandir)/man8/qemu-nbd.8 |
| 365 | 366 | |
| 366 | 367 | # Include automatically generated dependency files | ... | ... |