summaryrefslogtreecommitdiffstats
path: root/flashtools
diff options
context:
space:
mode:
authorTroy A. Griffitts <scribe@crosswire.org>2007-11-08 03:53:49 +0000
committerTroy A. Griffitts <scribe@crosswire.org>2007-11-08 03:53:49 +0000
commit6bf641257467207088920a610d9a98f878482199 (patch)
treeb1ff1a1ea5174ae61edf7a25482051bcbfbf37c4 /flashtools
parentb013316d2ff367232c03d796c1c86f09e6e229df (diff)
downloadsword-tools-6bf641257467207088920a610d9a98f878482199.tar.gz
changed lessons to generate to their own subdirectory
git-svn-id: https://www.crosswire.org/svn/sword-tools/trunk@118 07627401-56e2-0310-80f4-f8cd0041bdcd
Diffstat (limited to 'flashtools')
-rw-r--r--flashtools/Makefile13
1 files changed, 7 insertions, 6 deletions
diff --git a/flashtools/Makefile b/flashtools/Makefile
index dc6a60d..8d90403 100644
--- a/flashtools/Makefile
+++ b/flashtools/Makefile
@@ -2,15 +2,16 @@ TARGETS= flash
all: $(TARGETS)
clean:
- rm -rf hebFreq hebFreqKJV greekFreq greekFreqKJV
+ rm -rf lessons
rm $(TARGETS)
lessons:
- mkdir -p hebFreq hebFreqKJV greekFreq greekFreqKJV
- ./flash -o hebFreq -w 25 -d m -r Gen-Mal
- ./flash -o hebFreqKJV -w 25 -d k -r Gen-Mal
- ./flash -o greekFreq -w 25 -d m -r Mat-Rev
- ./flash -o greekFreqKJV -w 25 -d k -r Mat-Rev
+ rm -rf lessons
+ mkdir -p lessons/hebFreq lessons/hebFreqKJV lessons/greekFreq lessons/greekFreqKJV
+ ./flash -o lessons/hebFreq -w 25 -d m -r Gen-Mal
+ ./flash -o lessons/hebFreqKJV -w 25 -d k -r Gen-Mal
+ ./flash -o lessons/greekFreq -w 25 -d m -r Mat-Rev
+ ./flash -o lessons/greekFreqKJV -w 25 -d k -r Mat-Rev
.cpp:
g++ -g `pkg-config --cflags sword` $< -o $@ `pkg-config --libs sword`