2010-12-14 05:39:04 +01:00
|
|
|
# -*- mode: Makefile; coding: utf-8; -*-
|
2006-01-08 02:25:02 +01:00
|
|
|
# Copyright 2002-2005 by Eric House (xwords@eehouse.org). All rights reserved.
|
2005-06-11 17:32:09 +02: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.
|
|
|
|
|
2009-01-25 19:57:05 +01:00
|
|
|
XWLANG = Danish
|
|
|
|
LANGCODE = da_DK
|
2010-12-14 05:39:04 +01:00
|
|
|
ENC = UTF-8
|
2005-06-11 17:32:09 +02:00
|
|
|
|
2010-12-14 05:39:04 +01:00
|
|
|
TARGET_TYPE ?= WINCE
|
2005-06-11 17:32:09 +02:00
|
|
|
|
|
|
|
include ../Makefile.langcommon
|
|
|
|
|
2009-01-25 19:57:05 +01:00
|
|
|
SOURCEDICT ?= $(XWDICTPATH)/Danish/LarsDanish.dict.gz
|
2005-06-11 17:32:09 +02:00
|
|
|
|
2006-08-11 03:44:08 +02:00
|
|
|
$(XWLANG)Main.dict.gz: $(SOURCEDICT) Makefile
|
2009-01-25 19:57:05 +01:00
|
|
|
zcat $< | tr -d '\r' | \
|
2010-12-14 05:39:04 +01:00
|
|
|
iconv -f iso88591 -t utf8 | \
|
|
|
|
sed 's,.,\U\0,g' | \
|
|
|
|
grep '[AEIOUÅÆØ]' | \
|
|
|
|
grep '^[AÅÆBCDEFGHIJKLMNOØPRSTUVXYZ]*$$' | \
|
|
|
|
sort -u | \
|
2005-06-11 17:32:09 +02: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
|
2005-06-11 17:32:09 +02:00
|
|
|
|
|
|
|
help:
|
|
|
|
@echo 'make [SOURCEDICT=LarsDanish.dict.gz] [TARGET_TYPE=WINCE|PALM]'
|