1- AWS := Cards/AWS\ Regions.md
2- AWS_SRC := Sources/aws.csv
3- ENG := Cards/English\ Vocabulary.md
4- ENG_SRC := Sources/english_vocab.csv
5- NATO := Cards/NATO\ Phonetic\ Alphabet.md
6- NATO_SRC := Sources/nato.csv
7- PERSIAN := Cards/Persian\ Alphabet.md
8- PERSIAN_PY := Scripts/persian.py
9- POW := Cards/Powers\ of\ Two.md
10- POW_PY := Scripts/pow2.py
11- PY := python3
12- VOCAB_PY := Scripts/vocab.py
13- TARGETS := $(AWS ) $(ENG ) $(NATO ) $(PERSIAN ) $(POW )
14- DEF_PY := Scripts/def.py
1+ AWS := Cards/AWS\ Regions.md
2+ AWS_SRC := Sources/aws.csv
3+ DEF_PY := Scripts/def.py
4+ ENG := Cards/English\ Vocabulary.md
5+ ENG_SRC := Sources/english_vocab.csv
6+ INDO_VOCAB := Cards/Indonesian\ Vocabulary.md
7+ INDO_VOCAB_SRC := Sources/indo_vocab.csv
8+ NATO := Cards/NATO\ Phonetic\ Alphabet.md
9+ NATO_SRC := Sources/nato.csv
10+ PERSIAN := Cards/Persian\ Alphabet.md
11+ PERSIAN_PY := Scripts/persian.py
12+ POW := Cards/Powers\ of\ Two.md
13+ POW_PY := Scripts/pow2.py
14+ PY := python3
15+ TARGETS := $(AWS ) $(ENG ) $(INDO_VOCAB ) $(NATO ) $(PERSIAN ) $(POW )
16+ VOCAB_PY := Scripts/vocab.py
1517
1618.PHONY : all
1719all : $(TARGETS )
@@ -22,6 +24,9 @@ $(AWS): $(AWS_SRC) $(VOCAB_PY)
2224$(ENG ) : $(ENG_SRC ) $(DEF_PY )
2325 $(PY ) $(DEF_PY ) $(ENG_SRC ) > $(ENG )
2426
27+ $(INDO_VOCAB ) : $(INDO_VOCAB_SRC ) $(VOCAB_PY )
28+ $(PY ) $(VOCAB_PY ) $(INDO_VOCAB_SRC ) > $(INDO_VOCAB )
29+
2530$(NATO ) : $(NATO_SRC ) $(DEF_PY )
2631 $(PY ) $(DEF_PY ) $(NATO_SRC ) > $(NATO )
2732
0 commit comments