Annotation of qemu/Makefile, revision 1.1.1.7

1.1.1.4   root        1: # Makefile for QEMU.
                      2: 
1.1.1.3   root        3: include config-host.mak
1.1.1.7 ! root        4: include $(SRC_PATH)/rules.mak
1.1       root        5: 
1.1.1.7 ! root        6: .PHONY: all clean cscope distclean dvi html info install install-doc \
        !             7:        recurse-all speed tar tarbin test
1.1.1.6   root        8: 
                      9: VPATH=$(SRC_PATH):$(SRC_PATH)/hw
1.1.1.4   root       10: 
1.1.1.5   root       11: 
1.1.1.7 ! root       12: CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
        !            13: LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
1.1.1.6   root       14: 
1.1.1.7 ! root       15: CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@
1.1.1.6   root       16: CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
1.1       root       17: LIBS=
                     18: ifdef CONFIG_STATIC
1.1.1.7 ! root       19: LDFLAGS += -static
1.1       root       20: endif
1.1.1.3   root       21: ifdef BUILD_DOCS
1.1.1.7 ! root       22: DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
1.1.1.3   root       23: else
                     24: DOCS=
                     25: endif
1.1       root       26: 
1.1.1.6   root       27: LIBS+=$(AIOLIBS)
                     28: 
1.1.1.7 ! root       29: ifdef CONFIG_SOLARIS
        !            30: LIBS+=-lsocket -lnsl -lresolv
        !            31: endif
        !            32: 
        !            33: ifdef CONFIG_WIN32
        !            34: LIBS+=-lwinmm -lws2_32 -liphlpapi
        !            35: endif
        !            36: 
        !            37: all: $(TOOLS) $(DOCS) recurse-all
        !            38: 
        !            39: SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
        !            40: 
        !            41: subdir-%:
        !            42:        $(call quiet-command,$(MAKE) -C $* V="$(V)" TARGET_DIR="$*/" all,)
1.1.1.6   root       43: 
1.1.1.7 ! root       44: $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
        !            45: $(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
1.1.1.6   root       46: 
1.1.1.7 ! root       47: recurse-all: $(SUBDIR_RULES)
1.1.1.6   root       48: 
                     49: #######################################################################
                     50: # BLOCK_OBJS is code used by both qemu system emulation and qemu-img
                     51: 
1.1.1.7 ! root       52: BLOCK_OBJS=cutils.o qemu-malloc.o
1.1.1.6   root       53: BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
                     54: BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
1.1.1.7 ! root       55: BLOCK_OBJS+=block-qcow2.o block-parallels.o block-nbd.o
        !            56: BLOCK_OBJS+=nbd.o block.o aio.o
        !            57: 
        !            58: ifdef CONFIG_WIN32
        !            59: BLOCK_OBJS += block-raw-win32.o
        !            60: else
        !            61: ifdef CONFIG_AIO
        !            62: BLOCK_OBJS += posix-aio-compat.o
        !            63: endif
        !            64: BLOCK_OBJS += block-raw-posix.o
        !            65: endif
1.1.1.6   root       66: 
                     67: ######################################################################
1.1.1.7 ! root       68: # libqemu_common.a: Target independent part of system emulation. The
1.1.1.6   root       69: # long term path is to suppress *all* target specific code in case of
                     70: # system emulation, i.e. a single QEMU executable should support all
                     71: # CPUs and machines.
                     72: 
                     73: OBJS=$(BLOCK_OBJS)
                     74: OBJS+=readline.o console.o
                     75: 
                     76: OBJS+=irq.o
                     77: OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
1.1.1.7 ! root       78: OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
        !            79: OBJS+=tmp105.o lm832x.o
1.1.1.6   root       80: OBJS+=scsi-disk.o cdrom.o
                     81: OBJS+=scsi-generic.o
1.1.1.7 ! root       82: OBJS+=usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
        !            83: OBJS+=usb-serial.o usb-net.o
1.1.1.6   root       84: OBJS+=sd.o ssi-sd.o
1.1.1.7 ! root       85: OBJS+=bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
        !            86: OBJS+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
        !            87: OBJS+=qemu-char.o aio.o net-checksum.o savevm.o cache-utils.o
        !            88: 
        !            89: ifdef CONFIG_BRLAPI
        !            90: OBJS+= baum.o
        !            91: LIBS+=-lbrlapi
        !            92: endif
1.1.1.6   root       93: 
                     94: ifdef CONFIG_WIN32
                     95: OBJS+=tap-win32.o
1.1.1.7 ! root       96: else
        !            97: OBJS+=migration-exec.o
1.1.1.6   root       98: endif
                     99: 
                    100: AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
                    101: ifdef CONFIG_SDL
                    102: AUDIO_OBJS += sdlaudio.o
1.1.1.5   root      103: endif
1.1.1.6   root      104: ifdef CONFIG_OSS
                    105: AUDIO_OBJS += ossaudio.o
1.1.1.5   root      106: endif
1.1.1.6   root      107: ifdef CONFIG_COREAUDIO
                    108: AUDIO_OBJS += coreaudio.o
1.1.1.7 ! root      109: AUDIO_PT = yes
1.1.1.5   root      110: endif
1.1.1.6   root      111: ifdef CONFIG_ALSA
                    112: AUDIO_OBJS += alsaaudio.o
                    113: endif
                    114: ifdef CONFIG_DSOUND
                    115: AUDIO_OBJS += dsoundaudio.o
                    116: endif
                    117: ifdef CONFIG_FMOD
                    118: AUDIO_OBJS += fmodaudio.o
                    119: audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
                    120: endif
1.1.1.7 ! root      121: ifdef CONFIG_ESD
        !           122: AUDIO_PT = yes
        !           123: AUDIO_PT_INT = yes
        !           124: AUDIO_OBJS += esdaudio.o
        !           125: endif
        !           126: ifdef CONFIG_PA
        !           127: AUDIO_PT = yes
        !           128: AUDIO_PT_INT = yes
        !           129: AUDIO_OBJS += paaudio.o
        !           130: endif
        !           131: ifdef AUDIO_PT
        !           132: LDFLAGS += -pthread
        !           133: endif
        !           134: ifdef AUDIO_PT_INT
        !           135: AUDIO_OBJS += audio_pt_int.o
        !           136: endif
1.1.1.6   root      137: AUDIO_OBJS+= wavcapture.o
                    138: OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
1.1.1.5   root      139: 
1.1.1.6   root      140: ifdef CONFIG_SDL
                    141: OBJS+=sdl.o x_keymap.o
                    142: endif
1.1.1.7 ! root      143: ifdef CONFIG_CURSES
        !           144: OBJS+=curses.o
        !           145: endif
1.1.1.6   root      146: OBJS+=vnc.o d3des.o
1.1.1.4   root      147: 
1.1.1.6   root      148: ifdef CONFIG_COCOA
                    149: OBJS+=cocoa.o
                    150: endif
1.1       root      151: 
1.1.1.6   root      152: ifdef CONFIG_SLIRP
                    153: CPPFLAGS+=-I$(SRC_PATH)/slirp
                    154: SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
                    155: slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
                    156: tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
                    157: OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
                    158: endif
                    159: 
1.1.1.7 ! root      160: LIBS+=$(VDE_LIBS)
        !           161: 
1.1.1.6   root      162: cocoa.o: cocoa.m
1.1.1.5   root      163: 
1.1.1.6   root      164: sdl.o: sdl.c keymaps.c sdl_keysym.h
1.1.1.7 ! root      165: 
        !           166: sdl.o audio/sdlaudio.o: CFLAGS += $(SDL_CFLAGS)
1.1       root      167: 
1.1.1.6   root      168: vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
                    169: 
1.1.1.7 ! root      170: vnc.o: CFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
        !           171: 
        !           172: curses.o: curses.c keymaps.c curses_keys.h
        !           173: 
        !           174: bt-host.o: CFLAGS += $(CONFIG_BLUEZ_CFLAGS)
1.1.1.6   root      175: 
                    176: libqemu_common.a: $(OBJS)
                    177: 
1.1.1.7 ! root      178: #######################################################################
        !           179: # USER_OBJS is code used by qemu userspace emulation
        !           180: USER_OBJS=cutils.o  cache-utils.o
1.1.1.6   root      181: 
1.1.1.7 ! root      182: libqemu_user.a: $(USER_OBJS)
1.1.1.6   root      183: 
1.1.1.7 ! root      184: ######################################################################
1.1.1.6   root      185: 
1.1.1.7 ! root      186: qemu-img$(EXESUF): qemu-img.o qemu-tool.o osdep.o $(BLOCK_OBJS)
1.1.1.6   root      187: 
1.1.1.7 ! root      188: qemu-nbd$(EXESUF):  qemu-nbd.o qemu-tool.o osdep.o $(BLOCK_OBJS)
1.1.1.6   root      189: 
1.1.1.7 ! root      190: qemu-img$(EXESUF) qemu-nbd$(EXESUF): LIBS += -lz
1.1       root      191: 
                    192: clean:
                    193: # avoid old build problems by removing potentially incorrect old files
1.1.1.6   root      194:        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
1.1.1.7 ! root      195:        rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
1.1.1.6   root      196:        rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
1.1       root      197:        $(MAKE) -C tests clean
                    198:        for d in $(TARGET_DIRS); do \
                    199:        $(MAKE) -C $$d $@ || exit 1 ; \
                    200:         done
                    201: 
                    202: distclean: clean
1.1.1.3   root      203:        rm -f config-host.mak config-host.h $(DOCS)
1.1.1.4   root      204:        rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
1.1       root      205:        for d in $(TARGET_DIRS); do \
                    206:        rm -rf $$d || exit 1 ; \
                    207:         done
                    208: 
                    209: KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
                    210: ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
                    211: common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
                    212: 
1.1.1.7 ! root      213: ifdef INSTALL_BLOBS
        !           214: BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
        !           215: video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
        !           216: pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
        !           217: bamboo.dtb
        !           218: else
        !           219: BLOBS=
        !           220: endif
        !           221: 
1.1.1.3   root      222: install-doc: $(DOCS)
                    223:        mkdir -p "$(DESTDIR)$(docdir)"
                    224:        $(INSTALL) -m 644 qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
1.1       root      225: ifndef CONFIG_WIN32
1.1.1.3   root      226:        mkdir -p "$(DESTDIR)$(mandir)/man1"
1.1.1.7 ! root      227:        $(INSTALL) -m 644 qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
        !           228:        mkdir -p "$(DESTDIR)$(mandir)/man8"
        !           229:        $(INSTALL) -m 644 qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
1.1.1.3   root      230: endif
                    231: 
                    232: install: all $(if $(BUILD_DOCS),install-doc)
                    233:        mkdir -p "$(DESTDIR)$(bindir)"
1.1.1.6   root      234: ifneq ($(TOOLS),)
1.1.1.3   root      235:        $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
1.1.1.6   root      236: endif
1.1.1.7 ! root      237: ifneq ($(BLOBS),)
1.1.1.3   root      238:        mkdir -p "$(DESTDIR)$(datadir)"
1.1.1.7 ! root      239:        set -e; for x in $(BLOBS); do \
1.1.1.3   root      240:                $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
                    241:        done
1.1.1.7 ! root      242: endif
1.1.1.3   root      243: ifndef CONFIG_WIN32
                    244:        mkdir -p "$(DESTDIR)$(datadir)/keymaps"
1.1.1.7 ! root      245:        set -e; for x in $(KEYMAPS); do \
1.1.1.3   root      246:                $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
                    247:        done
1.1       root      248: endif
                    249:        for d in $(TARGET_DIRS); do \
                    250:        $(MAKE) -C $$d $@ || exit 1 ; \
                    251:         done
                    252: 
                    253: # various test targets
1.1.1.6   root      254: test speed: all
1.1       root      255:        $(MAKE) -C tests $@
                    256: 
1.1.1.6   root      257: TAGS:
1.1       root      258:        etags *.[ch] tests/*.[ch]
                    259: 
                    260: cscope:
                    261:        rm -f ./cscope.*
1.1.1.7 ! root      262:        find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
1.1       root      263:        cscope -b
                    264: 
                    265: # documentation
                    266: %.html: %.texi
                    267:        texi2html -monolithic -number $<
                    268: 
1.1.1.3   root      269: %.info: %.texi
                    270:        makeinfo $< -o $@
                    271: 
                    272: %.dvi: %.texi
                    273:        texi2dvi $<
                    274: 
1.1       root      275: qemu.1: qemu-doc.texi
1.1.1.3   root      276:        $(SRC_PATH)/texi2pod.pl $< qemu.pod
1.1       root      277:        pod2man --section=1 --center=" " --release=" " qemu.pod > $@
                    278: 
                    279: qemu-img.1: qemu-img.texi
1.1.1.3   root      280:        $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
1.1       root      281:        pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
                    282: 
1.1.1.7 ! root      283: qemu-nbd.8: qemu-nbd.texi
        !           284:        $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod
        !           285:        pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@
        !           286: 
1.1.1.4   root      287: info: qemu-doc.info qemu-tech.info
                    288: 
                    289: dvi: qemu-doc.dvi qemu-tech.dvi
                    290: 
                    291: html: qemu-doc.html qemu-tech.html
                    292: 
1.1.1.7 ! root      293: qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi
        !           294: 
1.1.1.5   root      295: VERSION ?= $(shell cat VERSION)
                    296: FILE = qemu-$(VERSION)
1.1       root      297: 
                    298: # tar release (use 'make -k tar' on a checkouted tree)
                    299: tar:
                    300:        rm -rf /tmp/$(FILE)
                    301:        cp -r . /tmp/$(FILE)
1.1.1.7 ! root      302:        cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
1.1       root      303:        rm -rf /tmp/$(FILE)
                    304: 
                    305: # generate a binary distribution
                    306: tarbin:
1.1.1.7 ! root      307:        cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
1.1       root      308:        $(bindir)/qemu \
                    309:        $(bindir)/qemu-system-x86_64 \
1.1.1.7 ! root      310:        $(bindir)/qemu-system-arm \
        !           311:        $(bindir)/qemu-system-cris \
        !           312:        $(bindir)/qemu-system-m68k \
1.1       root      313:        $(bindir)/qemu-system-mips \
1.1.1.3   root      314:        $(bindir)/qemu-system-mipsel \
1.1.1.6   root      315:        $(bindir)/qemu-system-mips64 \
                    316:        $(bindir)/qemu-system-mips64el \
1.1.1.7 ! root      317:        $(bindir)/qemu-system-ppc \
        !           318:        $(bindir)/qemu-system-ppcemb \
        !           319:        $(bindir)/qemu-system-ppc64 \
1.1.1.6   root      320:        $(bindir)/qemu-system-sh4 \
                    321:        $(bindir)/qemu-system-sh4eb \
1.1.1.7 ! root      322:        $(bindir)/qemu-system-sparc \
1.1       root      323:        $(bindir)/qemu-i386 \
1.1.1.6   root      324:        $(bindir)/qemu-x86_64 \
1.1.1.7 ! root      325:        $(bindir)/qemu-alpha \
        !           326:        $(bindir)/qemu-arm \
        !           327:        $(bindir)/qemu-armeb \
        !           328:        $(bindir)/qemu-cris \
        !           329:        $(bindir)/qemu-m68k \
        !           330:        $(bindir)/qemu-mips \
        !           331:        $(bindir)/qemu-mipsel \
        !           332:        $(bindir)/qemu-ppc \
        !           333:        $(bindir)/qemu-ppc64 \
        !           334:        $(bindir)/qemu-ppc64abi32 \
        !           335:        $(bindir)/qemu-sh4 \
        !           336:        $(bindir)/qemu-sh4eb \
        !           337:        $(bindir)/qemu-sparc \
        !           338:        $(bindir)/qemu-sparc64 \
        !           339:        $(bindir)/qemu-sparc32plus \
        !           340:        $(bindir)/qemu-img \
        !           341:        $(bindir)/qemu-nbd \
1.1       root      342:        $(datadir)/bios.bin \
                    343:        $(datadir)/vgabios.bin \
                    344:        $(datadir)/vgabios-cirrus.bin \
                    345:        $(datadir)/ppc_rom.bin \
                    346:        $(datadir)/video.x \
1.1.1.4   root      347:        $(datadir)/openbios-sparc32 \
1.1.1.7 ! root      348:        $(datadir)/openbios-sparc64 \
        !           349:        $(datadir)/openbios-ppc \
        !           350:        $(datadir)/pxe-ne2k_pci.bin \
1.1.1.5   root      351:        $(datadir)/pxe-rtl8139.bin \
1.1.1.7 ! root      352:        $(datadir)/pxe-pcnet.bin \
        !           353:        $(datadir)/pxe-e1000.bin \
1.1       root      354:        $(docdir)/qemu-doc.html \
                    355:        $(docdir)/qemu-tech.html \
1.1.1.7 ! root      356:        $(mandir)/man1/qemu.1 \
        !           357:        $(mandir)/man1/qemu-img.1 \
        !           358:        $(mandir)/man8/qemu-nbd.8
1.1.1.6   root      359: 
                    360: # Include automatically generated dependency files
                    361: -include $(wildcard *.d audio/*.d slirp/*.d)

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.