2003-08-10 23:39:31 +02:00
|
|
|
include config-host.mak
|
2003-02-19 00:35:48 +01:00
|
|
|
|
2003-03-07 00:23:54 +01:00
|
|
|
CFLAGS=-Wall -O2 -g
|
2004-04-01 01:37:16 +02:00
|
|
|
ifdef CONFIG_WIN32
|
|
|
|
CFLAGS+=-fpack-struct
|
|
|
|
endif
|
2003-02-18 23:55:36 +01:00
|
|
|
LDFLAGS=-g
|
2003-02-19 00:35:48 +01:00
|
|
|
LIBS=
|
2003-03-03 15:32:43 +01:00
|
|
|
DEFINES+=-D_GNU_SOURCE
|
2004-04-01 01:37:16 +02:00
|
|
|
ifndef CONFIG_WIN32
|
2004-05-17 22:06:42 +02:00
|
|
|
TOOLS=qemu-mkcow vmdk2raw
|
2004-04-01 01:37:16 +02:00
|
|
|
endif
|
2004-05-08 16:44:43 +02:00
|
|
|
ifdef CONFIG_STATIC
|
|
|
|
LDFLAGS+=-static
|
|
|
|
endif
|
2003-05-25 18:41:18 +02:00
|
|
|
|
2004-04-04 17:21:17 +02:00
|
|
|
all: dyngen$(EXESUF) $(TOOLS) qemu-doc.html qemu-tech.html qemu.1
|
2003-08-10 23:39:31 +02:00
|
|
|
for d in $(TARGET_DIRS); do \
|
2004-05-12 21:32:15 +02:00
|
|
|
$(MAKE) -C $$d $@ || exit 1 ; \
|
2003-08-10 23:39:31 +02:00
|
|
|
done
|
2003-07-06 19:15:21 +02:00
|
|
|
|
2004-04-02 22:55:59 +02:00
|
|
|
qemu-mkcow: qemu-mkcow.c
|
2004-05-08 16:44:43 +02:00
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -o $@ $^ $(LIBS)
|
2003-06-15 22:25:43 +02:00
|
|
|
|
2004-05-17 22:06:42 +02:00
|
|
|
vmdk2raw: vmdk2raw.c
|
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -o $@ $^ $(LIBS)
|
|
|
|
|
2004-04-02 22:55:59 +02:00
|
|
|
dyngen$(EXESUF): dyngen.c
|
|
|
|
$(HOST_CC) $(CFLAGS) $(DEFINES) -o $@ $^
|
2003-02-18 23:55:36 +01:00
|
|
|
|
|
|
|
clean:
|
2003-08-12 01:01:33 +02:00
|
|
|
# avoid old build problems by removing potentially incorrect old files
|
|
|
|
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
|
2004-04-01 01:37:16 +02:00
|
|
|
rm -f *.o *.a $(TOOLS) dyngen$(EXESUF) TAGS qemu.pod
|
2004-05-12 21:32:15 +02:00
|
|
|
$(MAKE) -C tests clean
|
2003-08-10 23:39:31 +02:00
|
|
|
for d in $(TARGET_DIRS); do \
|
2004-05-12 21:32:15 +02:00
|
|
|
$(MAKE) -C $$d $@ || exit 1 ; \
|
2003-08-10 23:39:31 +02:00
|
|
|
done
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2003-03-07 00:23:54 +01:00
|
|
|
distclean: clean
|
2003-08-12 01:01:33 +02:00
|
|
|
rm -f config-host.mak config-host.h
|
2003-08-11 01:41:46 +02:00
|
|
|
for d in $(TARGET_DIRS); do \
|
2003-10-28 01:12:52 +01:00
|
|
|
rm -rf $$d || exit 1 ; \
|
2003-08-11 01:41:46 +02:00
|
|
|
done
|
2003-03-07 00:23:54 +01:00
|
|
|
|
2003-08-10 23:39:31 +02:00
|
|
|
install: all
|
2004-04-02 22:55:59 +02:00
|
|
|
mkdir -p "$(bindir)"
|
|
|
|
ifndef CONFIG_WIN32
|
|
|
|
install -m 755 -s $(TOOLS) "$(bindir)"
|
|
|
|
endif
|
2004-05-12 20:54:06 +02:00
|
|
|
mkdir -p "$(datadir)"
|
2004-02-26 00:54:25 +01:00
|
|
|
install -m 644 pc-bios/bios.bin pc-bios/vgabios.bin \
|
2004-06-06 17:50:03 +02:00
|
|
|
pc-bios/vgabios-cirrus.bin \
|
2004-05-12 20:54:06 +02:00
|
|
|
pc-bios/linux_boot.bin "$(datadir)"
|
2004-05-08 16:44:43 +02:00
|
|
|
mkdir -p "$(docdir)"
|
|
|
|
install -m 644 qemu-doc.html qemu-tech.html "$(docdir)"
|
2004-04-02 22:55:59 +02:00
|
|
|
ifndef CONFIG_WIN32
|
|
|
|
mkdir -p "$(mandir)/man1"
|
|
|
|
install qemu.1 qemu-mkcow.1 "$(mandir)/man1"
|
|
|
|
endif
|
2003-08-10 23:39:31 +02:00
|
|
|
for d in $(TARGET_DIRS); do \
|
2004-05-12 21:32:15 +02:00
|
|
|
$(MAKE) -C $$d $@ || exit 1 ; \
|
2003-08-10 23:39:31 +02:00
|
|
|
done
|
2003-03-22 18:31:19 +01:00
|
|
|
|
2003-03-01 18:13:26 +01:00
|
|
|
# various test targets
|
2004-01-04 17:10:33 +01:00
|
|
|
test speed test2: all
|
2004-05-12 21:32:15 +02:00
|
|
|
$(MAKE) -C tests $@
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2003-03-01 18:13:26 +01:00
|
|
|
TAGS:
|
2003-04-29 22:41:16 +02:00
|
|
|
etags *.[ch] tests/*.[ch]
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2003-03-23 21:17:16 +01:00
|
|
|
# documentation
|
2004-04-04 17:21:17 +02:00
|
|
|
%.html: %.texi
|
2003-03-23 21:17:16 +01:00
|
|
|
texi2html -monolithic -number $<
|
|
|
|
|
2003-10-01 02:13:48 +02:00
|
|
|
qemu.1: qemu-doc.texi
|
|
|
|
./texi2pod.pl $< qemu.pod
|
|
|
|
pod2man --section=1 --center=" " --release=" " qemu.pod > $@
|
|
|
|
|
2003-09-30 22:54:24 +02:00
|
|
|
FILE=qemu-$(shell cat VERSION)
|
2003-03-03 16:02:29 +01:00
|
|
|
|
2003-09-30 22:54:24 +02:00
|
|
|
# tar release (use 'make -k tar' on a checkouted tree)
|
2003-03-03 16:02:29 +01:00
|
|
|
tar:
|
|
|
|
rm -rf /tmp/$(FILE)
|
2003-09-30 22:54:24 +02:00
|
|
|
cp -r . /tmp/$(FILE)
|
2003-10-28 01:47:44 +01:00
|
|
|
( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
|
2003-03-03 16:02:29 +01:00
|
|
|
rm -rf /tmp/$(FILE)
|
|
|
|
|
2003-10-28 01:47:44 +01:00
|
|
|
# generate a binary distribution
|
2003-03-24 22:58:34 +01:00
|
|
|
tarbin:
|
2003-10-28 01:47:44 +01:00
|
|
|
( cd / ; tar zcvf ~/qemu-$(VERSION)-i386.tar.gz \
|
2004-05-12 20:54:06 +02:00
|
|
|
$(bindir)/qemu $(bindir)/qemu-fast \
|
|
|
|
$(bindir)/qemu-system-ppc \
|
|
|
|
$(bindir)/qemu-i386 \
|
|
|
|
$(bindir)/qemu-arm \
|
|
|
|
$(bindir)/qemu-sparc \
|
|
|
|
$(bindir)/qemu-ppc \
|
2004-05-17 22:06:42 +02:00
|
|
|
$(bindir)/qemu-mkcow $(bindir)/vmdk2raw \
|
2004-05-12 20:54:06 +02:00
|
|
|
$(datadir)/bios.bin \
|
|
|
|
$(datadir)/vgabios.bin \
|
2004-06-06 17:50:03 +02:00
|
|
|
$(datadir)/vgabios-cirrus.bin \
|
2004-05-12 20:54:06 +02:00
|
|
|
$(datadir)/linux_boot.bin \
|
2004-05-08 16:44:43 +02:00
|
|
|
$(docdir)/qemu-doc.html \
|
|
|
|
$(docdir)/qemu-tech.html \
|
|
|
|
$(mandir)/man1/qemu.1 $(mandir)/man1/qemu-mkcow.1 )
|
2003-03-24 22:58:34 +01:00
|
|
|
|
2003-02-18 23:55:36 +01:00
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|