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
|
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
|
2003-09-30 22:54:24 +02:00
|
|
|
TOOLS=qemu-mkcow
|
2003-05-25 18:41:18 +02:00
|
|
|
|
2003-10-01 02:13:48 +02:00
|
|
|
all: dyngen $(TOOLS) qemu-doc.html qemu.1
|
2003-08-10 23:39:31 +02:00
|
|
|
for d in $(TARGET_DIRS); do \
|
|
|
|
make -C $$d $@ || exit 1 ; \
|
|
|
|
done
|
2003-07-06 19:15:21 +02:00
|
|
|
|
2003-09-30 22:54:24 +02:00
|
|
|
qemu-mkcow: qemu-mkcow.o
|
2003-08-10 23:39:31 +02:00
|
|
|
$(HOST_CC) -o $@ $^ $(LIBS)
|
2003-06-15 22:25:43 +02:00
|
|
|
|
2003-08-10 23:39:31 +02:00
|
|
|
dyngen: dyngen.o
|
|
|
|
$(HOST_CC) -o $@ $^ $(LIBS)
|
2003-06-15 22:25:43 +02:00
|
|
|
|
2003-02-18 23:55:36 +01:00
|
|
|
%.o: %.c
|
2003-08-10 23:39:31 +02:00
|
|
|
$(HOST_CC) $(CFLAGS) $(DEFINES) -c -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
|
2003-10-01 02:13:48 +02:00
|
|
|
rm -f *.o *.a $(TOOLS) dyngen TAGS qemu.pod
|
2003-08-10 23:39:31 +02:00
|
|
|
for d in $(TARGET_DIRS); do \
|
|
|
|
make -C $$d $@ || exit 1 ; \
|
|
|
|
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
|
2003-06-27 14:02:03 +02:00
|
|
|
mkdir -p $(prefix)/bin
|
2003-08-10 23:39:31 +02:00
|
|
|
install -m 755 -s $(TOOLS) $(prefix)/bin
|
2003-10-01 02:13:48 +02:00
|
|
|
mkdir -p $(sharedir)
|
|
|
|
install -m 644 pc-bios/bios.bin pc-bios/vgabios.bin $(sharedir)
|
|
|
|
mkdir -p $(mandir)/man1
|
|
|
|
install qemu.1 $(mandir)/man1
|
2003-08-10 23:39:31 +02:00
|
|
|
for d in $(TARGET_DIRS); do \
|
|
|
|
make -C $$d $@ || exit 1 ; \
|
|
|
|
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
|
2003-03-01 18:13:26 +01: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
|
|
|
|
qemu-doc.html: qemu-doc.texi
|
|
|
|
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 \
|
|
|
|
$(prefix)/bin/qemu $(prefix)/bin/qemu-fast \
|
|
|
|
$(prefix)/bin/qemu-i386 \
|
|
|
|
$(prefix)/bin/qemu-arm \
|
|
|
|
$(prefix)/bin/qemu-sparc \
|
|
|
|
$(sharedir)/bios.bin \
|
|
|
|
$(sharedir)/vgabios.bin \
|
|
|
|
$(mandir)/man1/qemu.1 )
|
2003-03-24 22:58:34 +01:00
|
|
|
|
2003-02-18 23:55:36 +01:00
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|