2009-01-25 19:57:05 +01:00
|
|
|
|
# -*-mode: Makefile; coding: iso-8859-1; -*-
|
2006-01-08 02:25:02 +01:00
|
|
|
|
# Copyright 2002 by Eric House (xwords@eehouse.org). All rights reserved.
|
2003-12-09 07:08:12 +01:00
|
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
2006-08-11 03:44:08 +02:00
|
|
|
|
XWLANG=Swedish
|
2003-12-09 07:08:12 +01:00
|
|
|
|
LANGCODE=sv_SE
|
2009-01-25 19:57:05 +01:00
|
|
|
|
ENC = ISO-8859-1
|
2003-12-09 07:08:12 +01:00
|
|
|
|
|
2003-12-10 07:01:57 +01:00
|
|
|
|
# Swedish has too many chars for the old format.
|
|
|
|
|
NEWDAWG=whatever
|
|
|
|
|
|
2009-01-25 19:57:05 +01:00
|
|
|
|
TARGET_TYPE ?= WINCE
|
2003-12-09 07:08:12 +01:00
|
|
|
|
|
|
|
|
|
include ../Makefile.2to8
|
|
|
|
|
|
|
|
|
|
include ../Makefile.langcommon
|
|
|
|
|
|
2009-01-25 19:57:05 +01:00
|
|
|
|
SOURCEDICT ?= $(XWDICTPATH)/Swedish/swedish15.dict.gz
|
2006-07-22 18:05:45 +02:00
|
|
|
|
|
2003-12-09 07:08:12 +01:00
|
|
|
|
# Q and W are not available as tiles, but I'm told there's a custom in
|
|
|
|
|
# Swedish play of allowing blanks to stand for those letters as well.
|
|
|
|
|
# So we don't exclude words with those letters from the dictionary.
|
2006-08-11 03:44:08 +02:00
|
|
|
|
$(XWLANG)Main.dict.gz: $(SOURCEDICT) Makefile
|
2003-12-10 07:01:57 +01:00
|
|
|
|
zcat $< | tr [a-z<><7A><EFBFBD><EFBFBD><EFBFBD>] [A-Z<><5A><EFBFBD><EFBFBD><EFBFBD>] | \
|
2009-01-25 19:57:05 +01:00
|
|
|
|
LANG=$(LANGCODE):$(ENC) grep '^[A-Z<><5A><EFBFBD><EFBFBD><EFBFBD>]\{2,15\}$$' | \
|
2003-12-09 07:08:12 +01:00
|
|
|
|
gzip -c > $@
|
|
|
|
|
|
|
|
|
|
# Everything but creating of the Main.dict file is inherited from the
|
|
|
|
|
# "parent" Makefile.langcommon in the parent directory.
|
|
|
|
|
|
|
|
|
|
clean: clean_common
|
2006-08-11 03:44:08 +02:00
|
|
|
|
rm -f $(XWLANG)Main.dict.gz *.bin $(XWLANG)*.pdb $(XWLANG)*.seb
|
2003-12-09 07:08:12 +01:00
|
|
|
|
|