mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/virt-viewer
synced 2025-12-27 23:00:54 +00:00
This installer will provide with the tools and configuration needed to debug virt-viewer & remote-viewer. It will install itself by default in virt-viewer directory.
23 lines
529 B
Makefile
23 lines
529 B
Makefile
NULL=
|
|
|
|
EXTRA_DIST = \
|
|
spice-xpi-client-remote-viewer \
|
|
virt-viewer.nsis.in \
|
|
virt-viewer-debug.nsis.in \
|
|
$(NULL)
|
|
|
|
if OS_WIN32
|
|
deps.txt:
|
|
$(AM_V_GEN)rpm -qa | grep $(host_os) | sort | unix2dos > $@
|
|
|
|
virt-viewer-$(VERSION).exe: virt-viewer.nsis deps.txt
|
|
$(AM_V_GEN)DESTDIR=`mktemp -d` && \
|
|
make -C $(top_builddir) install DESTDIR=$$DESTDIR >/dev/null && \
|
|
makensis -NOCD -DDESTDIR=$$DESTDIR $< >/dev/null && \
|
|
rm -rf $$DESTDIR
|
|
|
|
CLEANFILES = deps.txt virt-viewer-$(VERSION).exe
|
|
endif
|
|
|
|
-include $(top_srcdir)/git.mk
|