]>
Commit | Line | Data |
---|---|---|
0cb3fb1e PB |
1 | # Makefile for QEMU. |
2 | ||
ad064840 | 3 | include config-host.mak |
17759187 | 4 | include $(SRC_PATH)/rules.mak |
766a487a | 5 | |
818220f5 AL |
6 | .PHONY: all clean cscope distclean dvi html info install install-doc \ |
7 | recurse-all speed tar tarbin test | |
0cb3fb1e | 8 | |
8c462f8f PB |
9 | VPATH=$(SRC_PATH):$(SRC_PATH)/hw |
10 | ||
17759187 | 11 | |
40293e58 FB |
12 | CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS) |
13 | LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS) | |
3142255c | 14 | |
96935aa4 | 15 | CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@ |
4fb240a4 | 16 | CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE |
766a487a | 17 | LIBS= |
1f50f8d1 | 18 | ifdef CONFIG_STATIC |
40293e58 | 19 | LDFLAGS += -static |
1f50f8d1 | 20 | endif |
cc8ae6de | 21 | ifdef BUILD_DOCS |
7a5ca864 | 22 | DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 |
cc8ae6de PB |
23 | else |
24 | DOCS= | |
25 | endif | |
aa05ae6f | 26 | |
70956b77 | 27 | LIBS+=$(AIOLIBS) |
83f64091 | 28 | |
7e00eb9b AL |
29 | ifdef CONFIG_SOLARIS |
30 | LIBS+=-lsocket -lnsl -lresolv | |
31 | endif | |
32 | ||
03ff3ca3 AL |
33 | ifdef CONFIG_WIN32 |
34 | LIBS+=-lwinmm -lws2_32 -liphlpapi | |
35 | endif | |
36 | ||
818220f5 | 37 | all: $(TOOLS) $(DOCS) recurse-all |
b9dea4fb | 38 | |
cec7d0b6 PB |
39 | SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) |
40 | ||
86e840ee | 41 | subdir-%: |
28c699a2 | 42 | $(call quiet-command,$(MAKE) -C $* V="$(V)" TARGET_DIR="$*/" all,) |
4aa42531 | 43 | |
cec7d0b6 PB |
44 | $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a |
45 | $(filter %-user,$(SUBDIR_RULES)): libqemu_user.a | |
46 | ||
47 | recurse-all: $(SUBDIR_RULES) | |
83f64091 | 48 | |
faf07963 PB |
49 | ####################################################################### |
50 | # BLOCK_OBJS is code used by both qemu system emulation and qemu-img | |
51 | ||
17e2377a | 52 | BLOCK_OBJS=cutils.o qemu-malloc.o |
faf07963 PB |
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 | |
03ff3ca3 | 55 | BLOCK_OBJS+=block-qcow2.o block-parallels.o block-nbd.o |
a76bab49 | 56 | BLOCK_OBJS+=nbd.o block.o aio.o |
03ff3ca3 AL |
57 | |
58 | ifdef CONFIG_WIN32 | |
59 | BLOCK_OBJS += block-raw-win32.o | |
60 | else | |
3c529d93 AL |
61 | ifdef CONFIG_AIO |
62 | BLOCK_OBJS += posix-aio-compat.o | |
63 | endif | |
03ff3ca3 AL |
64 | BLOCK_OBJS += block-raw-posix.o |
65 | endif | |
66 | ||
4fb240a4 | 67 | ###################################################################### |
2e2ea909 | 68 | # libqemu_common.a: Target independent part of system emulation. The |
4fb240a4 FB |
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. | |
47cea614 | 72 | |
cd01b4a3 | 73 | OBJS=$(BLOCK_OBJS) |
87ecb68b | 74 | OBJS+=readline.o console.o |
cd01b4a3 | 75 | |
87ecb68b PB |
76 | OBJS+=irq.o |
77 | OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o | |
7e7c5e4c | 78 | OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o |
1d4e547b | 79 | OBJS+=tmp105.o lm832x.o |
87ecb68b | 80 | OBJS+=scsi-disk.o cdrom.o |
985a03b0 | 81 | OBJS+=scsi-generic.o |
68063649 | 82 | OBJS+=usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o |
6c9f886c | 83 | OBJS+=usb-serial.o usb-net.o |
775616c3 | 84 | OBJS+=sd.o ssi-sd.o |
e6a6d5ab | 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 |
559b90fb | 86 | OBJS+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o |
902b3d5c | 87 | OBJS+=qemu-char.o aio.o net-checksum.o savevm.o cache-utils.o |
87ecb68b | 88 | |
2e4d9fb1 AJ |
89 | ifdef CONFIG_BRLAPI |
90 | OBJS+= baum.o | |
91 | LIBS+=-lbrlapi | |
92 | endif | |
93 | ||
4fb240a4 FB |
94 | ifdef CONFIG_WIN32 |
95 | OBJS+=tap-win32.o | |
559b90fb AL |
96 | else |
97 | OBJS+=migration-exec.o | |
4fb240a4 FB |
98 | endif |
99 | ||
100 | AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o | |
101 | ifdef CONFIG_SDL | |
102 | AUDIO_OBJS += sdlaudio.o | |
103 | endif | |
104 | ifdef CONFIG_OSS | |
105 | AUDIO_OBJS += ossaudio.o | |
106 | endif | |
107 | ifdef CONFIG_COREAUDIO | |
108 | AUDIO_OBJS += coreaudio.o | |
ca9cc28c | 109 | AUDIO_PT = yes |
4fb240a4 FB |
110 | endif |
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 | |
ca9cc28c AZ |
121 | ifdef CONFIG_ESD |
122 | AUDIO_PT = yes | |
123 | AUDIO_PT_INT = yes | |
124 | AUDIO_OBJS += esdaudio.o | |
125 | endif | |
b8e59f18 | 126 | ifdef CONFIG_PA |
127 | AUDIO_PT = yes | |
128 | AUDIO_PT_INT = yes | |
129 | AUDIO_OBJS += paaudio.o | |
130 | endif | |
ca9cc28c AZ |
131 | ifdef AUDIO_PT |
132 | LDFLAGS += -pthread | |
133 | endif | |
134 | ifdef AUDIO_PT_INT | |
135 | AUDIO_OBJS += audio_pt_int.o | |
136 | endif | |
4fb240a4 FB |
137 | AUDIO_OBJS+= wavcapture.o |
138 | OBJS+=$(addprefix audio/, $(AUDIO_OBJS)) | |
139 | ||
0483755a | 140 | OBJS+=keymaps.o |
4fb240a4 FB |
141 | ifdef CONFIG_SDL |
142 | OBJS+=sdl.o x_keymap.o | |
143 | endif | |
4d3b6f6e AZ |
144 | ifdef CONFIG_CURSES |
145 | OBJS+=curses.o | |
146 | endif | |
76655d6d | 147 | OBJS+=vnc.o acl.o d3des.o |
5fb6c7a8 AL |
148 | ifdef CONFIG_VNC_TLS |
149 | OBJS+=vnc-tls.o vnc-auth-vencrypt.o | |
150 | endif | |
2f9606b3 AL |
151 | ifdef CONFIG_VNC_SASL |
152 | OBJS+=vnc-auth-sasl.o | |
153 | endif | |
4fb240a4 FB |
154 | |
155 | ifdef CONFIG_COCOA | |
156 | OBJS+=cocoa.o | |
157 | endif | |
158 | ||
159 | ifdef CONFIG_SLIRP | |
160 | CPPFLAGS+=-I$(SRC_PATH)/slirp | |
161 | SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \ | |
162 | slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \ | |
163 | tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o | |
164 | OBJS+=$(addprefix slirp/, $(SLIRP_OBJS)) | |
165 | endif | |
166 | ||
8a16d273 TS |
167 | LIBS+=$(VDE_LIBS) |
168 | ||
4fb240a4 | 169 | cocoa.o: cocoa.m |
4fb240a4 | 170 | |
0483755a AL |
171 | keymaps.o: keymaps.c keymaps.h |
172 | ||
173 | sdl.o: sdl.c keymaps.h sdl_keysym.h | |
807544e2 AL |
174 | |
175 | sdl.o audio/sdlaudio.o: CFLAGS += $(SDL_CFLAGS) | |
4fb240a4 | 176 | |
76655d6d AL |
177 | acl.o: acl.h acl.c |
178 | ||
2f9606b3 | 179 | vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h |
5fb6c7a8 | 180 | |
76655d6d | 181 | vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h |
4fb240a4 | 182 | |
807544e2 | 183 | vnc.o: CFLAGS += $(CONFIG_VNC_TLS_CFLAGS) |
4d3b6f6e | 184 | |
5fb6c7a8 AL |
185 | vnc-tls.o: vnc-tls.c vnc.h |
186 | ||
187 | vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h | |
188 | ||
2f9606b3 AL |
189 | vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h |
190 | ||
0483755a | 191 | curses.o: curses.c keymaps.h curses_keys.h |
fb599c9a | 192 | |
807544e2 | 193 | bt-host.o: CFLAGS += $(CONFIG_BLUEZ_CFLAGS) |
4fb240a4 FB |
194 | |
195 | libqemu_common.a: $(OBJS) | |
4fb240a4 | 196 | |
cec7d0b6 PB |
197 | ####################################################################### |
198 | # USER_OBJS is code used by qemu userspace emulation | |
902b3d5c | 199 | USER_OBJS=cutils.o cache-utils.o |
cec7d0b6 PB |
200 | |
201 | libqemu_user.a: $(USER_OBJS) | |
cec7d0b6 | 202 | |
4fb240a4 FB |
203 | ###################################################################### |
204 | ||
03ff3ca3 | 205 | qemu-img$(EXESUF): qemu-img.o qemu-tool.o osdep.o $(BLOCK_OBJS) |
4fb240a4 | 206 | |
03ff3ca3 | 207 | qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o osdep.o $(BLOCK_OBJS) |
3aa892d7 | 208 | |
0a8e1acd AL |
209 | qemu-io$(EXESUF): qemu-io.o qemu-tool.o osdep.o cmd.o $(BLOCK_OBJS) |
210 | ||
211 | qemu-img$(EXESUF) qemu-nbd$(EXESUF) qemu-io$(EXESUF): LIBS += -lz | |
7a5ca864 | 212 | |
31e31b8a | 213 | clean: |
2d80ae89 | 214 | # avoid old build problems by removing potentially incorrect old files |
5fafdf24 | 215 | 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 |
86e840ee | 216 | rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~ |
4fb240a4 | 217 | rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d |
7d3505c5 | 218 | $(MAKE) -C tests clean |
626df76a | 219 | for d in $(TARGET_DIRS); do \ |
7d3505c5 | 220 | $(MAKE) -C $$d $@ || exit 1 ; \ |
626df76a | 221 | done |
31e31b8a | 222 | |
7d13299d | 223 | distclean: clean |
016c62c8 | 224 | rm -f config-host.mak config-host.h $(DOCS) qemu-options.texi |
0cb3fb1e | 225 | rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr} |
76bc6838 | 226 | for d in $(TARGET_DIRS); do \ |
bc1b050d | 227 | rm -rf $$d || exit 1 ; \ |
76bc6838 | 228 | done |
7d13299d | 229 | |
fed4a9ad FB |
230 | KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ |
231 | ar de en-us fi fr-be hr it lv nl pl ru th \ | |
232 | common de-ch es fo fr-ca hu ja mk nl-be pt sl tr | |
233 | ||
77755340 TS |
234 | ifdef INSTALL_BLOBS |
235 | BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ | |
e5d01b06 AJ |
236 | video.x openbios-sparc32 openbios-sparc64 openbios-ppc \ |
237 | pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \ | |
238 | bamboo.dtb | |
77755340 TS |
239 | else |
240 | BLOBS= | |
241 | endif | |
242 | ||
38954dca PB |
243 | install-doc: $(DOCS) |
244 | mkdir -p "$(DESTDIR)$(docdir)" | |
245 | $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)" | |
246 | ifndef CONFIG_WIN32 | |
247 | mkdir -p "$(DESTDIR)$(mandir)/man1" | |
6473e68f | 248 | $(INSTALL) -m 644 qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" |
7a5ca864 | 249 | mkdir -p "$(DESTDIR)$(mandir)/man8" |
6473e68f | 250 | $(INSTALL) -m 644 qemu-nbd.8 "$(DESTDIR)$(mandir)/man8" |
38954dca PB |
251 | endif |
252 | ||
253 | install: all $(if $(BUILD_DOCS),install-doc) | |
1236cab7 | 254 | mkdir -p "$(DESTDIR)$(bindir)" |
932a79df | 255 | ifneq ($(TOOLS),) |
1625af87 | 256 | $(INSTALL) -m 755 $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)" |
932a79df | 257 | endif |
77755340 | 258 | ifneq ($(BLOBS),) |
1236cab7 | 259 | mkdir -p "$(DESTDIR)$(datadir)" |
77755340 | 260 | set -e; for x in $(BLOBS); do \ |
6a882643 | 261 | $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \ |
ad064840 | 262 | done |
77755340 | 263 | endif |
11d9f695 | 264 | ifndef CONFIG_WIN32 |
1236cab7 | 265 | mkdir -p "$(DESTDIR)$(datadir)/keymaps" |
18be8d77 | 266 | set -e; for x in $(KEYMAPS); do \ |
6a882643 | 267 | $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \ |
ad064840 | 268 | done |
11d9f695 | 269 | endif |
626df76a | 270 | for d in $(TARGET_DIRS); do \ |
7d3505c5 | 271 | $(MAKE) -C $$d $@ || exit 1 ; \ |
626df76a | 272 | done |
612384d7 | 273 | |
367e86e8 | 274 | # various test targets |
9b0b8203 | 275 | test speed: all |
7d3505c5 | 276 | $(MAKE) -C tests $@ |
31e31b8a | 277 | |
5fafdf24 | 278 | TAGS: |
b9adb4a6 | 279 | etags *.[ch] tests/*.[ch] |
31e31b8a | 280 | |
6688bc6d FB |
281 | cscope: |
282 | rm -f ./cscope.* | |
ede46085 | 283 | find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files |
6688bc6d FB |
284 | cscope -b |
285 | ||
3ef693a0 | 286 | # documentation |
1f673135 | 287 | %.html: %.texi |
0d00e563 | 288 | $(call quiet-command,texi2html -I=. -monolithic -number $<," GEN $@") |
3ef693a0 | 289 | |
f3548328 | 290 | %.info: %.texi |
0d00e563 | 291 | $(call quiet-command,makeinfo -I . $< -o $@," GEN $@") |
f3548328 FB |
292 | |
293 | %.dvi: %.texi | |
0d00e563 | 294 | $(call quiet-command,texi2dvi -I . $<," GEN $@") |
5824d651 BS |
295 | |
296 | qemu-options.texi: $(SRC_PATH)/qemu-options.hx | |
0d00e563 | 297 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") |
f3548328 | 298 | |
5a67135a | 299 | qemu.1: qemu-doc.texi |
0d00e563 AL |
300 | $(call quiet-command, \ |
301 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \ | |
302 | pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \ | |
303 | " GEN $@") | |
5a67135a | 304 | |
acd935ef | 305 | qemu-img.1: qemu-img.texi |
0d00e563 AL |
306 | $(call quiet-command, \ |
307 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \ | |
308 | pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \ | |
309 | " GEN $@") | |
acd935ef | 310 | |
7a5ca864 | 311 | qemu-nbd.8: qemu-nbd.texi |
0d00e563 AL |
312 | $(call quiet-command, \ |
313 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \ | |
314 | pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \ | |
315 | " GEN $@") | |
7a5ca864 | 316 | |
0cb3fb1e PB |
317 | info: qemu-doc.info qemu-tech.info |
318 | ||
319 | dvi: qemu-doc.dvi qemu-tech.dvi | |
320 | ||
321 | html: qemu-doc.html qemu-tech.html | |
322 | ||
5824d651 | 323 | qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi qemu-options.texi |
818220f5 | 324 | |
df5cf721 TS |
325 | VERSION ?= $(shell cat VERSION) |
326 | FILE = qemu-$(VERSION) | |
586314f2 | 327 | |
1e43adfc | 328 | # tar release (use 'make -k tar' on a checkouted tree) |
586314f2 FB |
329 | tar: |
330 | rm -rf /tmp/$(FILE) | |
1e43adfc | 331 | cp -r . /tmp/$(FILE) |
99c6c082 | 332 | cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn |
586314f2 FB |
333 | rm -rf /tmp/$(FILE) |
334 | ||
76b62fd0 | 335 | # generate a binary distribution |
d691f669 | 336 | tarbin: |
18be8d77 | 337 | cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \ |
43095f31 | 338 | $(bindir)/qemu \ |
43095f31 | 339 | $(bindir)/qemu-system-x86_64 \ |
40e8a53b AJ |
340 | $(bindir)/qemu-system-arm \ |
341 | $(bindir)/qemu-system-cris \ | |
342 | $(bindir)/qemu-system-m68k \ | |
93856aac | 343 | $(bindir)/qemu-system-mips \ |
38260998 | 344 | $(bindir)/qemu-system-mipsel \ |
fbe4f65b TS |
345 | $(bindir)/qemu-system-mips64 \ |
346 | $(bindir)/qemu-system-mips64el \ | |
40e8a53b AJ |
347 | $(bindir)/qemu-system-ppc \ |
348 | $(bindir)/qemu-system-ppcemb \ | |
349 | $(bindir)/qemu-system-ppc64 \ | |
ff1aaf65 | 350 | $(bindir)/qemu-system-sh4 \ |
85ffbdfc | 351 | $(bindir)/qemu-system-sh4eb \ |
40e8a53b | 352 | $(bindir)/qemu-system-sparc \ |
7efa4387 | 353 | $(bindir)/qemu-i386 \ |
f0403c03 | 354 | $(bindir)/qemu-x86_64 \ |
40e8a53b AJ |
355 | $(bindir)/qemu-alpha \ |
356 | $(bindir)/qemu-arm \ | |
357 | $(bindir)/qemu-armeb \ | |
358 | $(bindir)/qemu-cris \ | |
359 | $(bindir)/qemu-m68k \ | |
360 | $(bindir)/qemu-mips \ | |
361 | $(bindir)/qemu-mipsel \ | |
362 | $(bindir)/qemu-ppc \ | |
363 | $(bindir)/qemu-ppc64 \ | |
364 | $(bindir)/qemu-ppc64abi32 \ | |
365 | $(bindir)/qemu-sh4 \ | |
366 | $(bindir)/qemu-sh4eb \ | |
367 | $(bindir)/qemu-sparc \ | |
368 | $(bindir)/qemu-sparc64 \ | |
369 | $(bindir)/qemu-sparc32plus \ | |
370 | $(bindir)/qemu-img \ | |
371 | $(bindir)/qemu-nbd \ | |
7efa4387 FB |
372 | $(datadir)/bios.bin \ |
373 | $(datadir)/vgabios.bin \ | |
de9258a8 | 374 | $(datadir)/vgabios-cirrus.bin \ |
637f6cd7 | 375 | $(datadir)/ppc_rom.bin \ |
d5295253 | 376 | $(datadir)/video.x \ |
0986ac3b | 377 | $(datadir)/openbios-sparc32 \ |
938255d2 | 378 | $(datadir)/openbios-sparc64 \ |
e5d01b06 | 379 | $(datadir)/openbios-ppc \ |
40e8a53b | 380 | $(datadir)/pxe-ne2k_pci.bin \ |
19c80e50 | 381 | $(datadir)/pxe-rtl8139.bin \ |
40e8a53b | 382 | $(datadir)/pxe-pcnet.bin \ |
2991990b | 383 | $(datadir)/pxe-e1000.bin \ |
1f50f8d1 FB |
384 | $(docdir)/qemu-doc.html \ |
385 | $(docdir)/qemu-tech.html \ | |
40e8a53b AJ |
386 | $(mandir)/man1/qemu.1 \ |
387 | $(mandir)/man1/qemu-img.1 \ | |
7a5ca864 | 388 | $(mandir)/man8/qemu-nbd.8 |
d691f669 | 389 | |
4fb240a4 FB |
390 | # Include automatically generated dependency files |
391 | -include $(wildcard *.d audio/*.d slirp/*.d) |