diff options
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -158,6 +158,10 @@ all: dep lib tests: $(TESTS) ifneq ($(CROSSCOMPILE),true) for t in $(TESTS) ; do ./$$t ; done +else +ifeq ($(SYSTEM),MINGW32) + for t in $(TESTS) ; do wine ./$$t ; done +endif endif strip: $(TESTS) |