Clear MIPS_HFLAG_BMASK for ErrorEPC (Thiemo Seufer).
[qemu] / Makefile
index 74b1a94..bcc2e07 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -17,13 +17,6 @@ all: dyngen$(EXESUF) $(TOOLS) $(DOCS)
        for d in $(TARGET_DIRS); do \
        $(MAKE) -C $$d $@ || exit 1 ; \
         done
-ifdef CONFIG_KQEMU
-ifdef CONFIG_WIN32
-       $(MAKE) -C kqemu -f Makefile.winnt
-else
-       $(MAKE) -C kqemu
-endif
-endif
 
 qemu-img$(EXESUF): qemu-img.c block.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
        $(CC) -DQEMU_TOOL $(CFLAGS) $(LDFLAGS) $(DEFINES) -o $@ $^ -lz $(LIBS)
@@ -39,9 +32,6 @@ clean:
        for d in $(TARGET_DIRS); do \
        $(MAKE) -C $$d $@ || exit 1 ; \
         done
-ifdef CONFIG_KQEMU
-       $(MAKE) -C kqemu clean
-endif
 
 distclean: clean
        rm -f config-host.mak config-host.h
@@ -73,9 +63,6 @@ endif
        for d in $(TARGET_DIRS); do \
        $(MAKE) -C $$d $@ || exit 1 ; \
         done
-ifdef CONFIG_KQEMU
-       cd kqemu ; ./install.sh
-endif
 
 # various test targets
 test speed test2: all
@@ -84,6 +71,11 @@ test speed test2: all
 TAGS: 
        etags *.[ch] tests/*.[ch]
 
+cscope:
+       rm -f ./cscope.*
+       find . -name "*.[ch]" -print > ./cscope.files
+       cscope -b
+
 # documentation
 %.html: %.texi
        texi2html -monolithic -number $<
@@ -112,10 +104,16 @@ tarbin:
        $(bindir)/qemu-system-ppc \
        $(bindir)/qemu-system-sparc \
        $(bindir)/qemu-system-x86_64 \
+       $(bindir)/qemu-system-mips \
+       $(bindir)/qemu-system-mipsel \
+       $(bindir)/qemu-system-arm \
        $(bindir)/qemu-i386 \
         $(bindir)/qemu-arm \
+        $(bindir)/qemu-armeb \
         $(bindir)/qemu-sparc \
         $(bindir)/qemu-ppc \
+        $(bindir)/qemu-mips \
+        $(bindir)/qemu-mipsel \
         $(bindir)/qemu-img \
        $(datadir)/bios.bin \
        $(datadir)/vgabios.bin \