We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc9d55c commit f565b02Copy full SHA for f565b02
2 files changed
Makefile
@@ -9,15 +9,15 @@ PERSIAN_PY := Scripts/persian.py
9
POW := Cards/Powers\ of\ Two.md
10
POW_PY := Scripts/pow2.py
11
PY := python3
12
-SIMPLE := Scripts/simple.py
+VOCAB_PY := Scripts/vocab.py
13
TARGETS := $(AWS) $(ENG) $(NATO) $(PERSIAN) $(POW)
14
DEF_PY := Scripts/def.py
15
16
.PHONY: all
17
all: $(TARGETS)
18
19
-$(AWS): $(AWS_SRC) $(SIMPLE)
20
- $(PY) $(SIMPLE) $(AWS_SRC) > $(AWS)
+$(AWS): $(AWS_SRC) $(VOCAB_PY)
+ $(PY) $(VOCAB_PY) $(AWS_SRC) > $(AWS)
21
22
$(ENG): $(ENG_SRC) $(DEF_PY)
23
$(PY) $(DEF_PY) $(ENG_SRC) > $(ENG)
Scripts/simple.py Scripts/vocab.pyScripts/simple.py renamed to Scripts/vocab.py
0 commit comments