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