|
From: <fri...@us...> - 2009-01-06 07:23:52
|
Revision: 9659
http://zaf.svn.sourceforge.net/zaf/?rev=9659&view=rev
Author: friedelwolff
Date: 2009-01-06 07:23:45 +0000 (Tue, 06 Jan 2009)
Log Message:
-----------
Slight reorderings and a few more comments to clear things up and make diffing easier with ../utils/Makefile.language
Modified Paths:
--------------
trunk/dict/zu/Makefile
Modified: trunk/dict/zu/Makefile
===================================================================
--- trunk/dict/zu/Makefile 2009-01-06 07:22:18 UTC (rev 9658)
+++ trunk/dict/zu/Makefile 2009-01-06 07:23:45 UTC (rev 9659)
@@ -17,6 +17,8 @@
#REGION_FAKE=IT
CHARSET=iso-8859-1
+include ../utils/Makefile.language
+
# The wordlists already in munched form
MUNCHEDLIST.IN=$(shell ls myspell/munchedlist.*.in)
MUNCHEDLIST.CHARSET=$(patsubst %.in, %.$(CHARSET), $(MUNCHEDLIST.IN))
@@ -27,16 +29,19 @@
myspell/zu_ZA.aff: myspell/zu_aff.py
$^ > $@
-include ../utils/Makefile.language
-
ZU_TARGETS_MYSPELL= myspell/munchedlist.$(CHARSET) myspell/zu_ZA.dic.tmp myspell/zu_ZA.aff
ZU_TARGET_WORDLISTS= $(MUNCHEDLIST.CHARSET)
clean-wordlists:
- rm -rf $(TARGET_WORDLISTS) $(ZU_TARGET_WORDLISTS)
+ rm -rf $(TARGET_WORDLISTS)
+ rm -rf $(ZU_TARGET_WORDLISTS)
+# MySpell rules
+
clean-myspell:
- rm -rf $(TARGETS_MYSPELL) $(ZU_TARGETS_MYSPELL)
+ rm -rf $(TARGETS_MYSPELL)
+ rm -rf $(ZU_TARGETS_MYSPELL)
+
# we override the generation of the myspell .dic file.
# it does not munch the wordlist, but instead only makes use of the unmunched
# wordlist and then appends the already munched lists.
@@ -44,6 +49,16 @@
cat myspell/wordlist.$(CHARSET) myspell/munchedlist.$(CHARSET) | wc -l > $@
cat myspell/wordlist.$(CHARSET) myspell/munchedlist.$(CHARSET) >> $@
+# Ispell Rules
+
+# Aspell Rules
+
+# Hunspell rules
+
+# Autocorrect rules
+
+# this is just a standard pattern used for overriding Makefiles:
+# http://www.gnu.org/software/automake/manual/make/Overriding-Makefiles.html
%: force
@$(MAKE) -f ../utils/Makefile.language $@
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|