glib/build/win32/vs10/Makefile.am
Chun-wei Fan aef2d0c56d build/win32: Make "Install" Property Sheet Generation More Robust
List the files that are generated in the process to generate the
glib-install property sheets, so that we can use that list as a
depedency, as well as deleting those files in one shot after the
property sheet is generated, so we don't need to worry about those
in 'make distclean' or so.
2015-09-23 18:33:28 +08:00

60 lines
1.6 KiB
Makefile

GENERATED_ITEMS = \
glib.vcxproj \
glib.vcxproj.filters \
gobject.vcxproj \
gobject.vcxproj.filters \
gio.vcxproj \
gio.vcxproj.filters \
glib-compile-schemas.vcxproj \
glib-compile-schemas.vcxproj.filters \
glib-compile-resources.vcxproj \
glib-compile-resources.vcxproj.filters \
glib-gen-srcs.props \
glib-install.props
MSVC10_HEADERS_LIST = glib.vs10.headers gobject.vs10.headers gio.vs10.headers
EXTRA_DIST = \
README.txt \
glib.sln \
glib.vcxprojin \
glib.vcxproj.filtersin \
glib-genmarshal.vcxproj \
glib-genmarshal.vcxproj.filters \
gspawn-win32-helper-console.vcxproj \
gspawn-win32-helper-console.vcxproj.filters \
gspawn-win32-helper.vcxproj \
gspawn-win32-helper.vcxproj.filters \
gmodule.vcxproj \
gmodule.vcxproj.filters \
gobject.vcxprojin \
gobject.vcxproj.filtersin \
gthread.vcxproj \
gthread.vcxproj.filters \
gio.vcxprojin \
gio.vcxproj.filtersin \
glib-compile-schemas.vcxprojin \
glib-compile-schemas.vcxproj.filtersin \
gsettings.vcxproj \
gsettings.vcxproj.filters \
glib-compile-resources.vcxprojin \
glib-compile-resources.vcxproj.filtersin \
gresource.vcxproj \
gresource.vcxproj.filters \
gio-querymodules.vcxproj \
gio-querymodules.vcxproj.filters \
gdbus.vcxproj \
gdbus.vcxproj.filters \
glib-install.vcxproj \
glib-build-defines.props \
glib-install.propsin \
glib-version-paths.props \
glib-gen-srcs.props.in \
$(GENERATED_ITEMS)
glib-install.props: $(top_srcdir)/build/win32/vs10/glib-install.propsin $(MSVC10_HEADERS_LIST)
$(CPP) -P - <$(top_srcdir)/build/win32/vs10/glib-install.propsin >$@
rm $(MSVC10_HEADERS_LIST)
DISTCLEANFILES = $(GENERATED_ITEMS)