echo "*** $(gtk_update_icon_cache)"; \
fi
-
dist_man_MANS = sm.6
-EXTRA_DIST = sm.py sm.desktop.in sm.html
-CLEANFILES = sm.desktop
+# some of these files are just added to make the Debian packaging based on the
+# same VCS painless... (otherwise dpkg would try to add these files as patches)
+EXTRA_DIST = sm.py sm.desktop.in sm.html sm.webapp webapp.html README.Win32 sm.ico sm.rc sm-128.png sm.svg gtkzoom.h gtkzoom.c sm-fsmi-ka.jpg
+CLEANFILES = sm.desktop
+
+if WIN32
+AM_LDFLAGS = -Wl,--subsystem,windows
+sm_LDADD += sm-icon.o
+
+INSTALLER_BASE = screen-message-setup-@PACKAGE_VERSION@
+INSTALLER = $(INSTALLER_BASE).exe
+CLEANFILES += setup.iss $(INSTALLER)
+
+sm-icon.o: sm.rc
+ $(WINDRES) $< $@
+
+$(INSTALLER): setup.iss sm.exe README.Win32
+ "$(WINE)" "$(ISCC)" /O. "/F$(INSTALLER_BASE)" $<
+
+installer: $(INSTALLER)
+
+endif