mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
fix to build wordlist from current sources
I'd lost the old source, so uncompressed a current list to recreate.
This commit is contained in:
parent
b878f1db76
commit
2f9737ed0a
1 changed files with 3 additions and 3 deletions
|
@ -22,11 +22,11 @@ TARGET_TYPE=WINCE
|
|||
|
||||
include ../Makefile.langcommon
|
||||
|
||||
# from http://www.3zsoftware.com/en/wordmagic/lists.php
|
||||
SOURCEDICT ?= $(XWDICTPATH)/English/twl06.zip
|
||||
DICTNOTE = "from http://www.3zsoftware.com/en/wordmagic/lists.php"
|
||||
SOURCEDICT ?= $(XWDICTPATH)/English/TWL06.txt
|
||||
|
||||
$(XWLANG)Main.dict.gz: $(SOURCEDICT) Makefile
|
||||
zcat $< | grep -e "^[A-Z]\{2,15\}$$" | gzip -c > $@
|
||||
cat $< | grep -e "^[A-Z]\{2,15\}$$" | gzip -c > $@
|
||||
|
||||
# Everything but creating of the Main.dict file is inherited from the
|
||||
# "parent" Makefile.langcommon in the parent directory.
|
||||
|
|
Loading…
Reference in a new issue