2006-05-14 20:07:53 +08:00
|
|
|
# Makefile for QEMU.
|
|
|
|
|
2006-04-16 20:41:07 +08:00
|
|
|
include config-host.mak
|
2003-02-19 07:35:48 +08:00
|
|
|
|
2006-05-14 20:07:53 +08:00
|
|
|
.PHONY: all clean distclean dvi info install install-doc tar tarbin \
|
|
|
|
speed test test2 html dvi info
|
|
|
|
|
2007-01-05 09:00:47 +08:00
|
|
|
BASE_CFLAGS=
|
|
|
|
BASE_LDFLAGS=
|
|
|
|
|
2007-04-17 02:27:06 +08:00
|
|
|
BASE_CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
|
|
|
|
BASE_LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
|
|
|
|
|
2007-01-05 09:00:47 +08:00
|
|
|
CPPFLAGS += -I. -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
|
2003-02-19 07:35:48 +08:00
|
|
|
LIBS=
|
2004-05-08 22:44:43 +08:00
|
|
|
ifdef CONFIG_STATIC
|
2007-01-05 09:00:47 +08:00
|
|
|
BASE_LDFLAGS += -static
|
2004-05-08 22:44:43 +08:00
|
|
|
endif
|
2006-04-24 01:57:59 +08:00
|
|
|
ifdef BUILD_DOCS
|
2004-11-16 06:57:26 +08:00
|
|
|
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1
|
2006-04-24 01:57:59 +08:00
|
|
|
else
|
|
|
|
DOCS=
|
|
|
|
endif
|
2003-05-26 00:41:18 +08:00
|
|
|
|
2007-03-17 23:00:37 +08:00
|
|
|
LIBS+=$(AIOLIBS)
|
2006-08-02 00:21:11 +08:00
|
|
|
|
2006-05-14 00:54:03 +08:00
|
|
|
all: $(TOOLS) $(DOCS) recurse-all
|
|
|
|
|
2006-05-13 21:55:08 +08:00
|
|
|
subdir-%: dyngen$(EXESUF)
|
|
|
|
$(MAKE) -C $(subst subdir-,,$@) all
|
|
|
|
|
|
|
|
recurse-all: $(patsubst %,subdir-%, $(TARGET_DIRS))
|
2006-08-02 00:21:11 +08:00
|
|
|
|
2007-08-01 07:28:53 +08:00
|
|
|
qemu-img$(EXESUF): qemu-img.c cutils.c block.c block-raw.c block-cow.c block-qcow.c aes.c block-vmdk.c block-cloop.c block-dmg.c block-bochs.c block-vpc.c block-vvfat.c block-qcow2.c block-parallels.c
|
2007-01-05 09:00:47 +08:00
|
|
|
$(CC) -DQEMU_TOOL $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $(LDFLAGS) $(BASE_LDFLAGS) -o $@ $^ -lz $(LIBS)
|
2004-05-18 04:06:42 +08:00
|
|
|
|
2004-04-03 04:55:59 +08:00
|
|
|
dyngen$(EXESUF): dyngen.c
|
2007-01-05 09:00:47 +08:00
|
|
|
$(HOST_CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -o $@ $^
|
2003-02-19 06:55:36 +08:00
|
|
|
|
|
|
|
clean:
|
2003-08-12 07:01:33 +08:00
|
|
|
# avoid old build problems by removing potentially incorrect old files
|
2007-09-17 05:08:06 +08:00
|
|
|
rm -f config.mak config.h op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
|
2007-06-18 00:41:04 +08:00
|
|
|
rm -f *.o *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
|
2004-05-13 03:32:15 +08:00
|
|
|
$(MAKE) -C tests clean
|
2003-08-11 05:39:31 +08:00
|
|
|
for d in $(TARGET_DIRS); do \
|
2004-05-13 03:32:15 +08:00
|
|
|
$(MAKE) -C $$d $@ || exit 1 ; \
|
2003-08-11 05:39:31 +08:00
|
|
|
done
|
2003-02-19 06:55:36 +08:00
|
|
|
|
2003-03-07 07:23:54 +08:00
|
|
|
distclean: clean
|
2006-04-24 01:57:59 +08:00
|
|
|
rm -f config-host.mak config-host.h $(DOCS)
|
2006-05-14 20:07:53 +08:00
|
|
|
rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
|
2003-08-11 07:41:46 +08:00
|
|
|
for d in $(TARGET_DIRS); do \
|
2003-10-28 08:12:52 +08:00
|
|
|
rm -rf $$d || exit 1 ; \
|
2003-08-11 07:41:46 +08:00
|
|
|
done
|
2003-03-07 07:23:54 +08:00
|
|
|
|
2004-12-13 06:18:34 +08:00
|
|
|
KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
|
|
|
|
ar de en-us fi fr-be hr it lv nl pl ru th \
|
|
|
|
common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
|
|
|
|
|
2006-05-01 07:54:18 +08:00
|
|
|
install-doc: $(DOCS)
|
|
|
|
mkdir -p "$(DESTDIR)$(docdir)"
|
|
|
|
$(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
|
|
|
|
ifndef CONFIG_WIN32
|
|
|
|
mkdir -p "$(DESTDIR)$(mandir)/man1"
|
|
|
|
$(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
|
|
|
|
endif
|
|
|
|
|
|
|
|
install: all $(if $(BUILD_DOCS),install-doc)
|
2006-04-10 04:47:35 +08:00
|
|
|
mkdir -p "$(DESTDIR)$(bindir)"
|
2006-04-17 21:57:12 +08:00
|
|
|
$(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
|
2006-04-10 04:47:35 +08:00
|
|
|
mkdir -p "$(DESTDIR)$(datadir)"
|
2006-04-16 20:41:07 +08:00
|
|
|
for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
|
2007-05-20 18:54:50 +08:00
|
|
|
video.x openbios-sparc32 pxe-ne2k_pci.bin \
|
2007-01-06 01:41:07 +08:00
|
|
|
pxe-rtl8139.bin pxe-pcnet.bin; do \
|
2006-04-17 21:57:12 +08:00
|
|
|
$(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
|
2006-04-16 20:41:07 +08:00
|
|
|
done
|
2004-04-03 04:55:59 +08:00
|
|
|
ifndef CONFIG_WIN32
|
2006-04-10 04:47:35 +08:00
|
|
|
mkdir -p "$(DESTDIR)$(datadir)/keymaps"
|
2006-04-16 20:41:07 +08:00
|
|
|
for x in $(KEYMAPS); do \
|
2006-04-17 21:57:12 +08:00
|
|
|
$(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
|
2006-04-16 20:41:07 +08:00
|
|
|
done
|
2004-04-03 04:55:59 +08:00
|
|
|
endif
|
2003-08-11 05:39:31 +08:00
|
|
|
for d in $(TARGET_DIRS); do \
|
2004-05-13 03:32:15 +08:00
|
|
|
$(MAKE) -C $$d $@ || exit 1 ; \
|
2003-08-11 05:39:31 +08:00
|
|
|
done
|
2003-03-23 01:31:19 +08:00
|
|
|
|
2003-03-02 01:13:26 +08:00
|
|
|
# various test targets
|
2004-01-05 00:10:33 +08:00
|
|
|
test speed test2: all
|
2004-05-13 03:32:15 +08:00
|
|
|
$(MAKE) -C tests $@
|
2003-02-19 06:55:36 +08:00
|
|
|
|
2007-09-17 05:08:06 +08:00
|
|
|
TAGS:
|
2003-04-30 04:41:16 +08:00
|
|
|
etags *.[ch] tests/*.[ch]
|
2003-02-19 06:55:36 +08:00
|
|
|
|
2005-08-21 17:23:39 +08:00
|
|
|
cscope:
|
|
|
|
rm -f ./cscope.*
|
|
|
|
find . -name "*.[ch]" -print > ./cscope.files
|
|
|
|
cscope -b
|
|
|
|
|
2003-03-24 04:17:16 +08:00
|
|
|
# documentation
|
2004-04-04 23:21:17 +08:00
|
|
|
%.html: %.texi
|
2003-03-24 04:17:16 +08:00
|
|
|
texi2html -monolithic -number $<
|
|
|
|
|
2006-05-01 06:51:54 +08:00
|
|
|
%.info: %.texi
|
|
|
|
makeinfo $< -o $@
|
|
|
|
|
|
|
|
%.dvi: %.texi
|
|
|
|
texi2dvi $<
|
|
|
|
|
2003-10-01 08:13:48 +08:00
|
|
|
qemu.1: qemu-doc.texi
|
2006-04-16 20:41:07 +08:00
|
|
|
$(SRC_PATH)/texi2pod.pl $< qemu.pod
|
2003-10-01 08:13:48 +08:00
|
|
|
pod2man --section=1 --center=" " --release=" " qemu.pod > $@
|
|
|
|
|
2004-11-16 06:57:26 +08:00
|
|
|
qemu-img.1: qemu-img.texi
|
2006-04-16 20:41:07 +08:00
|
|
|
$(SRC_PATH)/texi2pod.pl $< qemu-img.pod
|
2004-11-16 06:57:26 +08:00
|
|
|
pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
|
|
|
|
|
2006-05-14 20:07:53 +08:00
|
|
|
info: qemu-doc.info qemu-tech.info
|
|
|
|
|
|
|
|
dvi: qemu-doc.dvi qemu-tech.dvi
|
|
|
|
|
|
|
|
html: qemu-doc.html qemu-tech.html
|
|
|
|
|
2007-01-25 06:56:36 +08:00
|
|
|
VERSION ?= $(shell cat VERSION)
|
|
|
|
FILE = qemu-$(VERSION)
|
2003-03-03 23:02:29 +08:00
|
|
|
|
2003-10-01 04:54:24 +08:00
|
|
|
# tar release (use 'make -k tar' on a checkouted tree)
|
2003-03-03 23:02:29 +08:00
|
|
|
tar:
|
|
|
|
rm -rf /tmp/$(FILE)
|
2003-10-01 04:54:24 +08:00
|
|
|
cp -r . /tmp/$(FILE)
|
2003-10-28 08:47:44 +08:00
|
|
|
( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
|
2003-03-03 23:02:29 +08:00
|
|
|
rm -rf /tmp/$(FILE)
|
|
|
|
|
2003-10-28 08:47:44 +08:00
|
|
|
# generate a binary distribution
|
2003-03-25 05:58:34 +08:00
|
|
|
tarbin:
|
2003-10-28 08:47:44 +08:00
|
|
|
( cd / ; tar zcvf ~/qemu-$(VERSION)-i386.tar.gz \
|
2005-04-28 04:49:23 +08:00
|
|
|
$(bindir)/qemu \
|
2004-05-13 02:54:06 +08:00
|
|
|
$(bindir)/qemu-system-ppc \
|
2007-04-24 15:34:03 +08:00
|
|
|
$(bindir)/qemu-system-ppc64 \
|
|
|
|
$(bindir)/qemu-system-ppcemb \
|
2004-11-16 06:57:26 +08:00
|
|
|
$(bindir)/qemu-system-sparc \
|
2005-04-28 04:49:23 +08:00
|
|
|
$(bindir)/qemu-system-x86_64 \
|
2005-07-25 02:44:35 +08:00
|
|
|
$(bindir)/qemu-system-mips \
|
2006-03-11 22:51:13 +08:00
|
|
|
$(bindir)/qemu-system-mipsel \
|
2007-04-01 19:16:48 +08:00
|
|
|
$(bindir)/qemu-system-mips64 \
|
|
|
|
$(bindir)/qemu-system-mips64el \
|
2005-12-07 05:42:03 +08:00
|
|
|
$(bindir)/qemu-system-arm \
|
2007-09-30 05:18:26 +08:00
|
|
|
$(bindir)/qemu-system-m68k \
|
|
|
|
$(bindir)/qemu-system-sh4 \
|
2004-05-13 02:54:06 +08:00
|
|
|
$(bindir)/qemu-i386 \
|
|
|
|
$(bindir)/qemu-arm \
|
2005-12-07 05:42:03 +08:00
|
|
|
$(bindir)/qemu-armeb \
|
2004-05-13 02:54:06 +08:00
|
|
|
$(bindir)/qemu-sparc \
|
|
|
|
$(bindir)/qemu-ppc \
|
2007-04-24 15:34:03 +08:00
|
|
|
$(bindir)/qemu-ppc64 \
|
2005-12-07 05:42:03 +08:00
|
|
|
$(bindir)/qemu-mips \
|
|
|
|
$(bindir)/qemu-mipsel \
|
2007-04-06 04:46:02 +08:00
|
|
|
$(bindir)/qemu-alpha \
|
2007-09-30 05:18:26 +08:00
|
|
|
$(bindir)/qemu-m68k \
|
|
|
|
$(bindir)/qemu-sh4 \
|
2004-08-02 05:46:49 +08:00
|
|
|
$(bindir)/qemu-img \
|
2004-05-13 02:54:06 +08:00
|
|
|
$(datadir)/bios.bin \
|
|
|
|
$(datadir)/vgabios.bin \
|
2004-06-06 23:50:03 +08:00
|
|
|
$(datadir)/vgabios-cirrus.bin \
|
2004-06-22 03:54:47 +08:00
|
|
|
$(datadir)/ppc_rom.bin \
|
2005-07-03 22:00:51 +08:00
|
|
|
$(datadir)/video.x \
|
2006-06-14 20:36:32 +08:00
|
|
|
$(datadir)/openbios-sparc32 \
|
2007-02-06 05:22:42 +08:00
|
|
|
$(datadir)/pxe-ne2k_pci.bin \
|
|
|
|
$(datadir)/pxe-rtl8139.bin \
|
|
|
|
$(datadir)/pxe-pcnet.bin \
|
2004-05-08 22:44:43 +08:00
|
|
|
$(docdir)/qemu-doc.html \
|
|
|
|
$(docdir)/qemu-tech.html \
|
2004-11-16 06:57:26 +08:00
|
|
|
$(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 )
|
2003-03-25 05:58:34 +08:00
|
|
|
|
2003-02-19 06:55:36 +08:00
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|