diff options
author | Troy A. Griffitts <scribe@crosswire.org> | 2007-11-07 16:49:12 +0000 |
---|---|---|
committer | Troy A. Griffitts <scribe@crosswire.org> | 2007-11-07 16:49:12 +0000 |
commit | b013316d2ff367232c03d796c1c86f09e6e229df (patch) | |
tree | 8be59b579cd97f6ea72181717047c793e9434d94 /flashtools/Makefile | |
parent | 33c73a70dce8df9e88e3539217004d4c2c90927b (diff) | |
download | sword-tools-b013316d2ff367232c03d796c1c86f09e6e229df.tar.gz |
Added lessons target to makefile
Changed lessons to be %.3 padded
git-svn-id: https://www.crosswire.org/svn/sword-tools/trunk@117 07627401-56e2-0310-80f4-f8cd0041bdcd
Diffstat (limited to 'flashtools/Makefile')
-rw-r--r-- | flashtools/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/flashtools/Makefile b/flashtools/Makefile index dc41e0a..dc6a60d 100644 --- a/flashtools/Makefile +++ b/flashtools/Makefile @@ -1,11 +1,17 @@ TARGETS= flash all: $(TARGETS) - mkdir -p hebFreq hebFreqKJV greekFreq greekFreqKJV clean: rm -rf hebFreq hebFreqKJV greekFreq greekFreqKJV 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 + .cpp: g++ -g `pkg-config --cflags sword` $< -o $@ `pkg-config --libs sword` |