Makefile (c04c071f40c4ce96049848e4fc3b60c961502b81) Makefile (8ab1aabc5d33a09ceee1adc1148f62cbb16cb43d)
1# Makefile for QEMU.
2
3ifneq ($(words $(subst :, ,$(CURDIR))), 1)
4 $(error main directory cannot contain spaces nor colons)
5endif
6
7# Always point to the root of the build tree (needs GNU make).
8BUILD_DIR=$(CURDIR)

--- 218 unchanged lines hidden (view full) ---

227 rm -f Makefile.ninja ninjatool ninjatool.stamp Makefile.mtest
228 rm -f config.log
229 rm -f linux-headers/asm
230 rm -Rf .sdk
231
232install-datadir:
233 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)"
234
1# Makefile for QEMU.
2
3ifneq ($(words $(subst :, ,$(CURDIR))), 1)
4 $(error main directory cannot contain spaces nor colons)
5endif
6
7# Always point to the root of the build tree (needs GNU make).
8BUILD_DIR=$(CURDIR)

--- 218 unchanged lines hidden (view full) ---

227 rm -f Makefile.ninja ninjatool ninjatool.stamp Makefile.mtest
228 rm -f config.log
229 rm -f linux-headers/asm
230 rm -Rf .sdk
231
232install-datadir:
233 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)"
234
235install-localstatedir:
236ifdef CONFIG_POSIX
237ifeq ($(CONFIG_GUEST_AGENT),y)
238 $(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run
239endif
240endif
241
242
243# Needed by "meson install"
244export DESTDIR
235# Needed by "meson install"
236export DESTDIR
245install: all install-datadir install-localstatedir
237install: all install-datadir
246 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
247
248ifdef CONFIG_WIN32
249
250INSTALLER = qemu-setup-$(VERSION)$(EXESUF)
251
252nsisflags = -V2 -NOCD
253

--- 101 unchanged lines hidden ---
238 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
239
240ifdef CONFIG_WIN32
241
242INSTALLER = qemu-setup-$(VERSION)$(EXESUF)
243
244nsisflags = -V2 -NOCD
245

--- 101 unchanged lines hidden ---