summaryrefslogtreecommitdiffstats
path: root/flashtools/Makefile
blob: 9a2ca9970e929961dae000b5dc9fcc7dbf77b035 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
TARGETS= flash
all: $(TARGETS)

clean:
	rm -rf lessons
	rm $(TARGETS)

lessons:
	rm -rf lessons
	mkdir -p lessons/hebrewFreq lessons/hebrewFreqKJV lessons/greekFreq lessons/greekFreqKJV
	./flash -o lessons/hebrewFreq -w 25 -d m -r Gen-Mal -f SILEOT
	./flash -o lessons/hebrewFreqKJV -w 25 -d k -r Gen-Mal -f SILEOT
	./flash -o lessons/greekFreq -w 25 -d m -r Mat-Rev -f GalSILB201
	./flash -o lessons/greekFreqKJV -w 25 -d k -r Mat-Rev -f GalSILB201
	./flash -o lessons/greekRomans -w 25 -d k -r Rom -f GalSILB201

.cpp:
	g++ -g `pkg-config --cflags sword` $< -o $@ `pkg-config --libs sword`