1.1 --- a/test/Makefile Thu May 24 11:12:10 2018 +0200
1.2 +++ b/test/Makefile Thu May 24 12:25:34 2018 +0200
1.3 @@ -83,7 +83,7 @@
1.4
1.5 CPPFLAGS += $(INC_FLAGS) -MMD -MP
1.6
1.7 -all: suitemaker $(TARGET) test_home_
1.8 +all: suitemaker $(TARGET) test_home_ scripts
1.9
1.10 $(TARGET): $(OBJS)
1.11 $(CXX) $(CPPFLAGS) $(LDFLAGS) $(OBJS) $(LDFLAGS) $(LDLIBS) -o $@
1.12 @@ -98,7 +98,13 @@
1.13
1.14 .PHONY: test_home_
1.15 test_home_:
1.16 - mkdir -p $(TEST_HOME)
1.17 +
1.18 +
1.19 +.PHONY: test_home_
1.20 +scripts:
1.21 +ifdef PY_ENV
1.22 + $(PY_ENV) genscripts.py
1.23 +endif
1.24
1.25 .PHONY: test
1.26 test: all
1.27 @@ -107,6 +113,7 @@
1.28 .PHONY: clean
1.29 clean:
1.30 $(RM) $(TARGET) $(OBJS) $(DEPS)
1.31 + $(RM) $(HERE)/*Tests
1.32
1.33
1.34