Browse Source

Module task added

master
Dirk Alders 4 years ago
parent
commit
9e3697da37
3 changed files with 7 additions and 3 deletions
  1. 3
    0
      .gitmodules
  2. 3
    3
      Makefile
  3. 1
    0
      task

+ 3
- 0
.gitmodules View File

10
 [submodule "report"]
10
 [submodule "report"]
11
 	path = report
11
 	path = report
12
 	url = https://git.mount-mockery.de/pylib/report
12
 	url = https://git.mount-mockery.de/pylib/report
13
+[submodule "task"]
14
+	path = task
15
+	url = https://git.mount-mockery.de/pylib/task

+ 3
- 3
Makefile View File

12
     stringtools\
12
     stringtools\
13
     stringtools.csp\
13
     stringtools.csp\
14
     stringtools.stp\
14
     stringtools.stp\
15
+    task\
15
 )
16
 )
16
 
17
 
17
 # Put it first so that "make" without argument is like "make help".
18
 # Put it first so that "make" without argument is like "make help".
18
 
19
 
19
 .PHONY: all help Makefile
20
 .PHONY: all help Makefile
20
 
21
 
21
-all: clean index.rst $(MODULES) html
22
+all: index.rst $(MODULES) html
22
 
23
 
23
 help:
24
 help:
24
 	@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
25
 	@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
32
 	rm -f *.rst
33
 	rm -f *.rst
33
 	@for module in $(MODULES) ; do \
34
 	@for module in $(MODULES) ; do \
34
 		if [ -d "$$module/_examples_" ]; then make --no-print-directory -C $$module/_examples_ clean; fi \
35
 		if [ -d "$$module/_examples_" ]; then make --no-print-directory -C $$module/_examples_ clean; fi \
35
-		#if [-d "$$module/_examples_" ]; then make --no-print-directory -C $$module/_examples_ clean; fi\
36
 	done
36
 	done
37
 	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
37
 	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
38
 
38
 
47
 	@if [ "$(findstring .,$@)" != "." ]; then \
47
 	@if [ "$(findstring .,$@)" != "." ]; then \
48
 		git -C $@ checkout master; \
48
 		git -C $@ checkout master; \
49
 		git -C $@ pull; \
49
 		git -C $@ pull; \
50
-		make -C $@/_examples_ clean all; \
50
+		make -C $@/_examples_ all; \
51
 	fi
51
 	fi
52
 	@echo "   $@.rst" >> index.rst; \
52
 	@echo "   $@.rst" >> index.rst; \

+ 1
- 0
task

1
+Subproject commit 9fbd98f39cb919603ddc784608aa1eb354129b3e

Loading…
Cancel
Save