Skip to content

Commit 301142f

Browse files
committed
indonesian vocabulary deck
1 parent f565b02 commit 301142f

3 files changed

Lines changed: 49 additions & 14 deletions

File tree

Cards/Indonesian Vocabulary.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
C:
2+
Indonesian: [anama]
3+
4+
English: [name]
5+
6+
C:
7+
Indonesian: [saya]
8+
9+
English: [I am]
10+
11+
C:
12+
Indonesian: [dari]
13+
14+
English: [from]
15+
16+
C:
17+
Indonesian: [pelancong]
18+
19+
English: [tourist]
20+
21+
C:
22+
Indonesian: [bapak]
23+
24+
English: [mister]

Makefile

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
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
1719
all: $(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

Sources/indo_vocab.csv

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Indonesian, English
2+
anama, name
3+
saya, I am
4+
dari, from
5+
pelancong, tourist
6+
bapak, mister

0 commit comments

Comments
 (0)