]>
Commit | Line | Data |
---|---|---|
0cb3fb1e PB |
1 | # Makefile for QEMU. |
2 | ||
a992fe3d | 3 | GENERATED_HEADERS = config-host.h |
f527c579 | 4 | |
55d7e8f6 | 5 | ifneq ($(wildcard config-host.mak),) |
1ad2134f PB |
6 | # Put the all: rule here so that config-host.mak can contain dependencies. |
7 | all: build-all | |
ad064840 | 8 | include config-host.mak |
17759187 | 9 | include $(SRC_PATH)/rules.mak |
59bc10ee | 10 | config-host.mak: $(SRC_PATH)/configure |
e5efe7f5 JQ |
11 | @echo $@ is out-of-date, running configure |
12 | @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh | |
55d7e8f6 AJ |
13 | else |
14 | config-host.mak: | |
15 | @echo "Please call configure before running make!" | |
16 | @exit 1 | |
17 | endif | |
766a487a | 18 | |
d9ace8b3 JQ |
19 | # Don't try to regenerate Makefile or configure |
20 | # We don't generate any of them | |
21 | Makefile: ; | |
22 | configure: ; | |
23 | ||
818220f5 | 24 | .PHONY: all clean cscope distclean dvi html info install install-doc \ |
20cc9997 | 25 | pdf recurse-all speed tar tarbin test build-all |
0cb3fb1e | 26 | |
076d2471 | 27 | $(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw) |
8c462f8f | 28 | |
3e2e0e6b | 29 | LIBS+=-lz $(LIBS_TOOLS) |
67c0f08d | 30 | |
cc8ae6de | 31 | ifdef BUILD_DOCS |
7a5ca864 | 32 | DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 |
cc8ae6de PB |
33 | else |
34 | DOCS= | |
35 | endif | |
aa05ae6f | 36 | |
1215c6e7 | 37 | SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) |
1f3d3c8f JQ |
38 | SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS)) |
39 | ||
40 | config-all-devices.mak: $(SUBDIR_DEVICES_MAK) | |
01d86a85 | 41 | $(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@," GEN $@") |
1f3d3c8f | 42 | |
a992fe3d PB |
43 | %/config-devices.mak: default-configs/%.mak |
44 | $(call quiet-command,cat $< > [email protected], " GEN $@") | |
012f0879 SW |
45 | @if test -f $@; then \ |
46 | if cmp -s [email protected] $@ || cmp -s $@ [email protected]; then \ | |
47 | mv [email protected] $@; \ | |
48 | cp -p $@ [email protected]; \ | |
49 | else \ | |
50 | if test -f [email protected]; then \ | |
51 | echo "WARNING: $@ (user modified) out of date.";\ | |
52 | else \ | |
53 | echo "WARNING: $@ out of date.";\ | |
54 | fi; \ | |
55 | echo "Run \"make defconfig\" to regenerate."; \ | |
56 | rm [email protected]; \ | |
57 | fi; \ | |
a992fe3d | 58 | else \ |
012f0879 SW |
59 | mv [email protected] $@; \ |
60 | cp -p $@ [email protected]; \ | |
a992fe3d PB |
61 | fi |
62 | ||
63 | defconfig: | |
64 | rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK) | |
65 | ||
1f3d3c8f | 66 | -include config-all-devices.mak |
1215c6e7 | 67 | |
f527c579 | 68 | build-all: $(DOCS) $(TOOLS) recurse-all |
b9dea4fb | 69 | |
1215c6e7 JQ |
70 | config-host.h: config-host.h-timestamp |
71 | config-host.h-timestamp: config-host.mak | |
72 | ||
cec7d0b6 PB |
73 | SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) |
74 | ||
f527c579 | 75 | subdir-%: $(GENERATED_HEADERS) |
0087375e | 76 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,) |
4aa42531 | 77 | |
b88bc808 | 78 | ifneq ($(wildcard config-host.mak),) |
0e8c9214 | 79 | include $(SRC_PATH)/Makefile.objs |
b88bc808 | 80 | endif |
0e8c9214 AF |
81 | |
82 | $(common-obj-y): $(GENERATED_HEADERS) | |
4d904533 | 83 | $(filter %-softmmu,$(SUBDIR_RULES)): $(common-obj-y) subdir-libdis |
c05ac895 | 84 | |
4d904533 | 85 | $(filter %-user,$(SUBDIR_RULES)): $(GENERATED_HEADERS) subdir-libdis-user subdir-libuser |
add16157 | 86 | |
c05ac895 PB |
87 | ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS)) |
88 | romsubdir-%: | |
89 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",) | |
90 | ||
91 | ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS)) | |
92 | ||
93 | recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES) | |
83f64091 | 94 | |
98b068a9 | 95 | audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS) |
0e22fd2f | 96 | |
a558ee17 | 97 | QEMU_CFLAGS+=$(CURL_CFLAGS) |
769ce76d | 98 | |
4fb240a4 | 99 | cocoa.o: cocoa.m |
4fb240a4 | 100 | |
0483755a AL |
101 | keymaps.o: keymaps.c keymaps.h |
102 | ||
c18a2c36 SS |
103 | sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h |
104 | ||
105 | sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h | |
807544e2 | 106 | |
a558ee17 | 107 | sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS) |
4fb240a4 | 108 | |
76655d6d AL |
109 | acl.o: acl.h acl.c |
110 | ||
2f9606b3 | 111 | vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h |
5fb6c7a8 | 112 | |
76655d6d | 113 | vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h |
4fb240a4 | 114 | |
a558ee17 | 115 | vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS) |
4d3b6f6e | 116 | |
5fb6c7a8 AL |
117 | vnc-tls.o: vnc-tls.c vnc.h |
118 | ||
119 | vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h | |
120 | ||
2f9606b3 AL |
121 | vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h |
122 | ||
70a4568f CC |
123 | vnc-encoding-zlib.o: vnc.h |
124 | ||
125 | vnc-encoding-hextile.o: vnc.h | |
126 | ||
0483755a | 127 | curses.o: curses.c keymaps.h curses_keys.h |
fb599c9a | 128 | |
a558ee17 | 129 | bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS) |
4fb240a4 | 130 | |
e4d5639d AS |
131 | iov.o: iov.c iov.h |
132 | ||
4fb240a4 FB |
133 | ###################################################################### |
134 | ||
3c089e15 JQ |
135 | qemu-img.o: qemu-img-cmds.h |
136 | qemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o: $(GENERATED_HEADERS) | |
153859be | 137 | |
526f0ac1 | 138 | qemu-img$(EXESUF): qemu-img.o qemu-tool.o qemu-error.o $(block-obj-y) $(qobject-obj-y) |
0e8c9214 | 139 | |
526f0ac1 | 140 | qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o qemu-error.o $(block-obj-y) $(qobject-obj-y) |
0e8c9214 | 141 | |
526f0ac1 | 142 | qemu-io$(EXESUF): qemu-io.o cmd.o qemu-tool.o qemu-error.o $(block-obj-y) $(qobject-obj-y) |
0a8e1acd | 143 | |
153859be SB |
144 | qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx |
145 | $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $@") | |
146 | ||
33837ba6 | 147 | check-qint: check-qint.o qint.o qemu-malloc.o |
5de65a07 | 148 | check-qstring: check-qstring.o qstring.o qemu-malloc.o |
acc3b033 | 149 | check-qdict: check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qemu-malloc.o qlist.o |
3aa3dcff | 150 | check-qlist: check-qlist.o qlist.o qint.o qemu-malloc.o |
9c9efb6b | 151 | check-qfloat: check-qfloat.o qfloat.o qemu-malloc.o |
422c46a8 | 152 | check-qjson: check-qjson.o qfloat.o qint.o qdict.o qstring.o qlist.o qbool.o qjson.o json-streamer.o json-lexer.o json-parser.o qemu-malloc.o |
33837ba6 | 153 | |
31e31b8a | 154 | clean: |
2d80ae89 | 155 | # avoid old build problems by removing potentially incorrect old files |
25be210f | 156 | rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h |
86e840ee | 157 | rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~ |
e1144d00 | 158 | rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d |
07b44ce9 | 159 | rm -f qemu-img-cmds.h |
7d3505c5 | 160 | $(MAKE) -C tests clean |
4d904533 | 161 | for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser libdis libdis-user; do \ |
fc8e320e | 162 | if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \ |
626df76a | 163 | done |
31e31b8a | 164 | |
7d13299d | 165 | distclean: clean |
fc8e320e | 166 | rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi |
a992fe3d | 167 | rm -f config-all-devices.mak |
fc8e320e | 168 | rm -f roms/seabios/config.mak roms/vgabios/config.mak |
20cc9997 | 169 | rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pdf,pg,toc,tp,vr} |
4d904533 | 170 | for d in $(TARGET_DIRS) libhw32 libhw64 libuser libdis libdis-user; do \ |
bc1b050d | 171 | rm -rf $$d || exit 1 ; \ |
76bc6838 | 172 | done |
7d13299d | 173 | |
fed4a9ad FB |
174 | KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ |
175 | ar de en-us fi fr-be hr it lv nl pl ru th \ | |
176 | common de-ch es fo fr-ca hu ja mk nl-be pt sl tr | |
177 | ||
77755340 TS |
178 | ifdef INSTALL_BLOBS |
179 | BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ | |
e5d01b06 | 180 | video.x openbios-sparc32 openbios-sparc64 openbios-ppc \ |
5309e5fb SW |
181 | gpxe-eepro100-80861209.rom \ |
182 | gpxe-eepro100-80861229.rom \ | |
183 | pxe-e1000.bin \ | |
88e2b0a5 SW |
184 | pxe-ne2k_pci.bin pxe-pcnet.bin \ |
185 | pxe-rtl8139.bin pxe-virtio.bin \ | |
253d0942 | 186 | bamboo.dtb petalogix-s3adsp1800.dtb \ |
fe270d04 AG |
187 | multiboot.bin linuxboot.bin \ |
188 | s390-zipl.rom | |
77755340 TS |
189 | else |
190 | BLOBS= | |
191 | endif | |
192 | ||
38954dca | 193 | install-doc: $(DOCS) |
58f8aead AL |
194 | $(INSTALL_DIR) "$(DESTDIR)$(docdir)" |
195 | $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)" | |
96d409eb | 196 | ifdef CONFIG_POSIX |
58f8aead AL |
197 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" |
198 | $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" | |
199 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8" | |
200 | $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8" | |
38954dca PB |
201 | endif |
202 | ||
b5ec5ce0 | 203 | install-sysconfig: |
990caaf1 AP |
204 | $(INSTALL_DIR) "$(DESTDIR)$(sysconfdir)/qemu" |
205 | $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(sysconfdir)/qemu" | |
b5ec5ce0 | 206 | |
207 | install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig | |
58f8aead | 208 | $(INSTALL_DIR) "$(DESTDIR)$(bindir)" |
932a79df | 209 | ifneq ($(TOOLS),) |
58f8aead | 210 | $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)" |
932a79df | 211 | endif |
77755340 | 212 | ifneq ($(BLOBS),) |
58f8aead | 213 | $(INSTALL_DIR) "$(DESTDIR)$(datadir)" |
77755340 | 214 | set -e; for x in $(BLOBS); do \ |
58f8aead | 215 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \ |
ad064840 | 216 | done |
77755340 | 217 | endif |
58f8aead | 218 | $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps" |
18be8d77 | 219 | set -e; for x in $(KEYMAPS); do \ |
79fd42aa | 220 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \ |
ad064840 | 221 | done |
626df76a | 222 | for d in $(TARGET_DIRS); do \ |
7d3505c5 | 223 | $(MAKE) -C $$d $@ || exit 1 ; \ |
626df76a | 224 | done |
612384d7 | 225 | |
367e86e8 | 226 | # various test targets |
9b0b8203 | 227 | test speed: all |
7d3505c5 | 228 | $(MAKE) -C tests $@ |
31e31b8a | 229 | |
21d4e8e3 | 230 | .PHONY: TAGS |
5fafdf24 | 231 | TAGS: |
21d4e8e3 | 232 | find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags |
31e31b8a | 233 | |
6688bc6d FB |
234 | cscope: |
235 | rm -f ./cscope.* | |
ede46085 | 236 | find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files |
6688bc6d FB |
237 | cscope -b |
238 | ||
3ef693a0 | 239 | # documentation |
01668d98 SW |
240 | MAKEINFO=makeinfo |
241 | MAKEINFOFLAGS=--no-headers --no-split --number-sections | |
20cc9997 SW |
242 | TEXIFLAG=$(if $(V),,--quiet) |
243 | %.dvi: %.texi | |
244 | $(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<," GEN $@") | |
245 | ||
1f673135 | 246 | %.html: %.texi |
01668d98 SW |
247 | $(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \ |
248 | " GEN $@") | |
3ef693a0 | 249 | |
f3548328 | 250 | %.info: %.texi |
01668d98 | 251 | $(call quiet-command,$(MAKEINFO) $< -o $@," GEN $@") |
f3548328 | 252 | |
20cc9997 SW |
253 | %.pdf: %.texi |
254 | $(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<," GEN $@") | |
5824d651 BS |
255 | |
256 | qemu-options.texi: $(SRC_PATH)/qemu-options.hx | |
0d00e563 | 257 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") |
f3548328 | 258 | |
2313086a BS |
259 | qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx |
260 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") | |
261 | ||
153859be SB |
262 | qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx |
263 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") | |
264 | ||
2313086a | 265 | qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi |
0d00e563 AL |
266 | $(call quiet-command, \ |
267 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \ | |
268 | pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \ | |
269 | " GEN $@") | |
5a67135a | 270 | |
153859be | 271 | qemu-img.1: qemu-img.texi qemu-img-cmds.texi |
0d00e563 AL |
272 | $(call quiet-command, \ |
273 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \ | |
274 | pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \ | |
275 | " GEN $@") | |
acd935ef | 276 | |
7a5ca864 | 277 | qemu-nbd.8: qemu-nbd.texi |
0d00e563 AL |
278 | $(call quiet-command, \ |
279 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \ | |
280 | pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \ | |
281 | " GEN $@") | |
7a5ca864 | 282 | |
0cb3fb1e | 283 | dvi: qemu-doc.dvi qemu-tech.dvi |
0cb3fb1e | 284 | html: qemu-doc.html qemu-tech.html |
20cc9997 SW |
285 | info: qemu-doc.info qemu-tech.info |
286 | pdf: qemu-doc.pdf qemu-tech.pdf | |
0cb3fb1e | 287 | |
20cc9997 SW |
288 | qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \ |
289 | qemu-img.texi qemu-nbd.texi qemu-options.texi \ | |
290 | qemu-monitor.texi qemu-img-cmds.texi | |
818220f5 | 291 | |
df5cf721 TS |
292 | VERSION ?= $(shell cat VERSION) |
293 | FILE = qemu-$(VERSION) | |
586314f2 | 294 | |
1e43adfc | 295 | # tar release (use 'make -k tar' on a checkouted tree) |
586314f2 FB |
296 | tar: |
297 | rm -rf /tmp/$(FILE) | |
1e43adfc | 298 | cp -r . /tmp/$(FILE) |
99c6c082 | 299 | cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn |
586314f2 FB |
300 | rm -rf /tmp/$(FILE) |
301 | ||
76b62fd0 | 302 | # generate a binary distribution |
d691f669 | 303 | tarbin: |
18be8d77 | 304 | cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \ |
43095f31 | 305 | $(bindir)/qemu \ |
43095f31 | 306 | $(bindir)/qemu-system-x86_64 \ |
40e8a53b AJ |
307 | $(bindir)/qemu-system-arm \ |
308 | $(bindir)/qemu-system-cris \ | |
309 | $(bindir)/qemu-system-m68k \ | |
bc6291a1 | 310 | $(bindir)/qemu-system-microblaze \ |
93856aac | 311 | $(bindir)/qemu-system-mips \ |
38260998 | 312 | $(bindir)/qemu-system-mipsel \ |
fbe4f65b TS |
313 | $(bindir)/qemu-system-mips64 \ |
314 | $(bindir)/qemu-system-mips64el \ | |
40e8a53b AJ |
315 | $(bindir)/qemu-system-ppc \ |
316 | $(bindir)/qemu-system-ppcemb \ | |
317 | $(bindir)/qemu-system-ppc64 \ | |
ff1aaf65 | 318 | $(bindir)/qemu-system-sh4 \ |
85ffbdfc | 319 | $(bindir)/qemu-system-sh4eb \ |
40e8a53b | 320 | $(bindir)/qemu-system-sparc \ |
7efa4387 | 321 | $(bindir)/qemu-i386 \ |
f0403c03 | 322 | $(bindir)/qemu-x86_64 \ |
40e8a53b AJ |
323 | $(bindir)/qemu-alpha \ |
324 | $(bindir)/qemu-arm \ | |
325 | $(bindir)/qemu-armeb \ | |
326 | $(bindir)/qemu-cris \ | |
327 | $(bindir)/qemu-m68k \ | |
bc6291a1 | 328 | $(bindir)/qemu-microblaze \ |
40e8a53b AJ |
329 | $(bindir)/qemu-mips \ |
330 | $(bindir)/qemu-mipsel \ | |
331 | $(bindir)/qemu-ppc \ | |
332 | $(bindir)/qemu-ppc64 \ | |
333 | $(bindir)/qemu-ppc64abi32 \ | |
334 | $(bindir)/qemu-sh4 \ | |
335 | $(bindir)/qemu-sh4eb \ | |
336 | $(bindir)/qemu-sparc \ | |
337 | $(bindir)/qemu-sparc64 \ | |
338 | $(bindir)/qemu-sparc32plus \ | |
339 | $(bindir)/qemu-img \ | |
340 | $(bindir)/qemu-nbd \ | |
7efa4387 FB |
341 | $(datadir)/bios.bin \ |
342 | $(datadir)/vgabios.bin \ | |
de9258a8 | 343 | $(datadir)/vgabios-cirrus.bin \ |
637f6cd7 | 344 | $(datadir)/ppc_rom.bin \ |
d5295253 | 345 | $(datadir)/video.x \ |
0986ac3b | 346 | $(datadir)/openbios-sparc32 \ |
938255d2 | 347 | $(datadir)/openbios-sparc64 \ |
e5d01b06 | 348 | $(datadir)/openbios-ppc \ |
40e8a53b | 349 | $(datadir)/pxe-ne2k_pci.bin \ |
19c80e50 | 350 | $(datadir)/pxe-rtl8139.bin \ |
40e8a53b | 351 | $(datadir)/pxe-pcnet.bin \ |
2991990b | 352 | $(datadir)/pxe-e1000.bin \ |
1f50f8d1 FB |
353 | $(docdir)/qemu-doc.html \ |
354 | $(docdir)/qemu-tech.html \ | |
40e8a53b AJ |
355 | $(mandir)/man1/qemu.1 \ |
356 | $(mandir)/man1/qemu-img.1 \ | |
7a5ca864 | 357 | $(mandir)/man8/qemu-nbd.8 |
d691f669 | 358 | |
4fb240a4 | 359 | # Include automatically generated dependency files |
e1144d00 | 360 | -include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d) |