mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 15:46:17 +01:00
aef2d0c56d
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.
41 lines
1014 B
Makefile
41 lines
1014 B
Makefile
GENERATED_ITEMS = \
|
|
glib.vcproj \
|
|
gobject.vcproj \
|
|
gio.vcproj \
|
|
glib-compile-schemas.vcproj \
|
|
glib-compile-resources.vcproj \
|
|
glib-gen-srcs.vsprops \
|
|
glib-install.vsprops
|
|
|
|
MSVC_HEADERS_LIST = glib.headers gobject.headers gio.headers
|
|
|
|
EXTRA_DIST = \
|
|
README.txt \
|
|
glib.sln \
|
|
glib.vcprojin \
|
|
glib-genmarshal.vcproj \
|
|
gspawn-win32-helper-console.vcproj \
|
|
gspawn-win32-helper.vcproj \
|
|
gmodule.vcproj \
|
|
gobject.vcprojin \
|
|
gthread.vcproj \
|
|
gio.vcprojin \
|
|
gsettings.vcproj \
|
|
gresource.vcproj \
|
|
gio-querymodules.vcproj \
|
|
gdbus.vcproj \
|
|
glib-compile-schemas.vcprojin \
|
|
glib-compile-resources.vcprojin \
|
|
glib-install.vcproj \
|
|
glib-build-defines.vsprops \
|
|
glib-version-paths.vsprops \
|
|
glib-gen-srcs.vsprops.in \
|
|
glib-install.vspropsin \
|
|
$(GENERATED_ITEMS)
|
|
|
|
glib-install.vsprops: $(top_srcdir)/build/win32/vs9/glib-install.vspropsin $(MSVC_HEADERS_LIST)
|
|
$(CPP) -P - <$(top_srcdir)/build/win32/vs9/glib-install.vspropsin >$@
|
|
rm $(MSVC_HEADERS_LIST)
|
|
|
|
DISTCLEANFILES = $(GENERATED_ITEMS)
|