Sfoglia il codice sorgente

Module task added

master
Dirk Alders 4 anni fa
parent
commit
9e3697da37
3 ha cambiato i file con 7 aggiunte e 3 eliminazioni
  1. 3
    0
      .gitmodules
  2. 3
    3
      Makefile
  3. 1
    0
      task

+ 3
- 0
.gitmodules Vedi File

@@ -10,3 +10,6 @@
10 10
 [submodule "report"]
11 11
 	path = report
12 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 Vedi File

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

+ 1
- 0
task

@@ -0,0 +1 @@
1
+Subproject commit 9fbd98f39cb919603ddc784608aa1eb354129b3e

Loading…
Annulla
Salva