makefiles: Add missing entries for mstask tests.

oldstable
Alexandre Julliard 2008-08-19 15:30:25 +02:00
parent c2a26cee16
commit 3842ab09f1
7 changed files with 12 additions and 0 deletions

1
.gitignore vendored
View File

@ -296,6 +296,7 @@ programs/winetest/msacm32_test.exe
programs/winetest/mscms_test.exe
programs/winetest/mshtml_test.exe
programs/winetest/msi_test.exe
programs/winetest/mstask_test.exe
programs/winetest/msvcrt_test.exe
programs/winetest/msvcrtd_test.exe
programs/winetest/msxml3_test.exe

View File

@ -353,6 +353,7 @@ ALL_MAKEFILES = \
dlls/msrle32/Makefile \
dlls/mssip32/Makefile \
dlls/mstask/Makefile \
dlls/mstask/tests/Makefile \
dlls/msvcirt/Makefile \
dlls/msvcr71/Makefile \
dlls/msvcrt/Makefile \
@ -787,6 +788,7 @@ dlls/msnet32/Makefile: dlls/msnet32/Makefile.in dlls/Makedll.rules
dlls/msrle32/Makefile: dlls/msrle32/Makefile.in dlls/Makedll.rules
dlls/mssip32/Makefile: dlls/mssip32/Makefile.in dlls/Makedll.rules
dlls/mstask/Makefile: dlls/mstask/Makefile.in dlls/Makedll.rules
dlls/mstask/tests/Makefile: dlls/mstask/tests/Makefile.in dlls/Maketest.rules
dlls/msvcirt/Makefile: dlls/msvcirt/Makefile.in dlls/Makedll.rules
dlls/msvcr71/Makefile: dlls/msvcr71/Makefile.in dlls/Makedll.rules
dlls/msvcrt/Makefile: dlls/msvcrt/Makefile.in dlls/Makedll.rules

3
configure vendored
View File

@ -22285,6 +22285,8 @@ ac_config_files="$ac_config_files dlls/mssip32/Makefile"
ac_config_files="$ac_config_files dlls/mstask/Makefile"
ac_config_files="$ac_config_files dlls/mstask/tests/Makefile"
ac_config_files="$ac_config_files dlls/msvcirt/Makefile"
ac_config_files="$ac_config_files dlls/msvcr71/Makefile"
@ -23502,6 +23504,7 @@ do
"dlls/msrle32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msrle32/Makefile" ;;
"dlls/mssip32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/mssip32/Makefile" ;;
"dlls/mstask/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/mstask/Makefile" ;;
"dlls/mstask/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/mstask/tests/Makefile" ;;
"dlls/msvcirt/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msvcirt/Makefile" ;;
"dlls/msvcr71/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msvcr71/Makefile" ;;
"dlls/msvcrt/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msvcrt/Makefile" ;;

View File

@ -1905,6 +1905,7 @@ AC_CONFIG_FILES([dlls/msnet32/Makefile])
AC_CONFIG_FILES([dlls/msrle32/Makefile])
AC_CONFIG_FILES([dlls/mssip32/Makefile])
AC_CONFIG_FILES([dlls/mstask/Makefile])
AC_CONFIG_FILES([dlls/mstask/tests/Makefile])
AC_CONFIG_FILES([dlls/msvcirt/Makefile])
AC_CONFIG_FILES([dlls/msvcr71/Makefile])
AC_CONFIG_FILES([dlls/msvcrt/Makefile])

View File

@ -330,6 +330,7 @@ TESTSUBDIRS = \
mscms/tests \
mshtml/tests \
msi/tests \
mstask/tests \
msvcrt/tests \
msvcrtd/tests \
msxml3/tests \

View File

@ -65,6 +65,7 @@ TESTBINS = \
mscms_test.exe \
mshtml_test.exe \
msi_test.exe \
mstask_test.exe \
msvcrt_test.exe \
msvcrtd_test.exe \
msxml3_test.exe \
@ -190,6 +191,8 @@ mshtml_test.exe: $(DLLDIR)/mshtml/tests/mshtml_test.exe$(DLLEXT)
cp $(DLLDIR)/mshtml/tests/mshtml_test.exe$(DLLEXT) $@ && $(STRIP) $@
msi_test.exe: $(DLLDIR)/msi/tests/msi_test.exe$(DLLEXT)
cp $(DLLDIR)/msi/tests/msi_test.exe$(DLLEXT) $@ && $(STRIP) $@
mstask_test.exe: $(DLLDIR)/mstask/tests/mstask_test.exe$(DLLEXT)
cp $(DLLDIR)/mstask/tests/mstask_test.exe$(DLLEXT) $@ && $(STRIP) $@
msvcrt_test.exe: $(DLLDIR)/msvcrt/tests/msvcrt_test.exe$(DLLEXT)
cp $(DLLDIR)/msvcrt/tests/msvcrt_test.exe$(DLLEXT) $@ && $(STRIP) $@
msvcrtd_test.exe: $(DLLDIR)/msvcrtd/tests/msvcrtd_test.exe$(DLLEXT)

View File

@ -126,6 +126,7 @@ msacm32_test.exe TESTRES "msacm32_test.exe"
mscms_test.exe TESTRES "mscms_test.exe"
mshtml_test.exe TESTRES "mshtml_test.exe"
msi_test.exe TESTRES "msi_test.exe"
mstask_test.exe TESTRES "mstask_test.exe"
msvcrt_test.exe TESTRES "msvcrt_test.exe"
msvcrtd_test.exe TESTRES "msvcrtd_test.exe"
msxml3_test.exe TESTRES "msxml3_test.exe"