diff options
author | Rico Tzschichholz <ricotz@t-online.de> | 2013-02-08 18:29:13 +0100 |
---|---|---|
committer | Rico Tzschichholz <ricotz@ubuntu.com> | 2013-02-08 18:29:13 +0100 |
commit | 656cc63c7509bac6d137021ef2d6c13c71264855 (patch) | |
tree | f1c4500925e67da0244c826fd3f1fa08fc9d9687 /gtk/a11y | |
parent | 97c235405d9409eb8cc2469be94de9c7d5a4b202 (diff) | |
download | gtk+-656cc63c7509bac6d137021ef2d6c13c71264855.tar.gz |
Revert "Drop things that break distcheck"
This reverts commit 2204f120839fbcebfab665fea0b70ed4176d7466.
Diffstat (limited to 'gtk/a11y')
-rw-r--r-- | gtk/a11y/Makefile.am | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gtk/a11y/Makefile.am b/gtk/a11y/Makefile.am index 9354d27f65..a451e8c1ea 100644 --- a/gtk/a11y/Makefile.am +++ b/gtk/a11y/Makefile.am @@ -137,4 +137,37 @@ libgtka11y_la_LIBADD = \ libgtka11y_la_LDFLAGS = \ $(LDFLAGS) +dist-hook: ../../build/win32/vs9/gtka11y.vcproj ../../build/win32/vs10/gtka11y.vcxproj ../../build/win32/vs10/gtka11y.vcxproj.filters + +../../build/win32/vs9/gtka11y.vcproj: ../../build/win32/vs9/gtka11y.vcprojin + for F in $(libgtka11y_la_SOURCES); do \ + case $$F in \ + *.c) echo ' <File RelativePath="..\..\..\gtk\a11y\'$$F'" />' \ + ;; \ + esac; \ + done >gtka11y.sourcefiles + $(CPP) -P - <$(top_srcdir)/build/win32/vs9/gtka11y.vcprojin >$@ + rm gtka11y.sourcefiles + +../../build/win32/vs10/gtka11y.vcxproj: ../../build/win32/vs10/gtka11y.vcxprojin + for F in $(libgtka11y_la_SOURCES); do \ + case $$F in \ + *.c) echo ' <ClCompile Include="..\..\..\gtk\a11y\'$$F'" />' \ + ;; \ + esac; \ + done >gtka11y.vs10.sourcefiles + $(CPP) -P - <$(top_srcdir)/build/win32/vs10/gtka11y.vcxprojin >$@ + rm gtka11y.vs10.sourcefiles + +../../build/win32/vs10/gtka11y.vcxproj.filters: ../../build/win32/vs10/gtka11y.vcxproj.filtersin + for F in $(libgtka11y_la_SOURCES); do \ + case $$F in \ + *.c) echo ' <ClCompile Include="..\..\..\gtk\a11y\'$$F'"><Filter>Source Files</Filter></ClCompile>' \ + ;; \ + esac; \ + done >gtka11y.vs10.sourcefiles.filters + $(CPP) -P - <$(top_srcdir)/build/win32/vs10/gtka11y.vcxproj.filtersin >$@ + rm gtka11y.vs10.sourcefiles.filters + + -include $(top_srcdir)/git.mk |