Package: dsdo / 1.6.36-5

1005_improve-main-rules.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Description: Improve main rules to include now-enabled nw-aspell and ispell
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2010-03-10
Index: dsdo/Makefile
===================================================================
--- dsdo.orig/Makefile	2014-10-13 18:59:50.829512600 +0200
+++ dsdo/Makefile	2014-10-13 18:59:50.801512864 +0200
@@ -12,37 +12,51 @@
 #-----------------------------------------------------------------------------
 # Build rules:
 
-all: words aspell ispell
+all: words new-aspell ispell myspell
 
 words: words-$(language_code)
 
 words-$(language_code): words-$(language_code).sq unsq
 	./unsq < words-$(language_code).sq > words-$(language_code)
+	./unsq < words-$(language_code).excluded.sq > words-$(language_code).excluded
 
 aspell: words
 	$(MAKE) -C aspell all
 
+new-aspell: words
+	$(MAKE) -C new_aspell all
+
 ispell: words
 	$(MAKE) -C ispell all
 
+myspell: words
+	$(MAKE) -C myspell all
+
 #-----------------------------------------------------------------------------
 # Installation rules:
 
-install: install-words install-aspell install-ispell
+install: install-words install-new-aspell install-ispell
 
 install-words: words
 
 install-aspell: aspell
 	$(MAKE) -C aspell install
 
+install-new-aspell: new-aspell
+	$(MAKE) -C new_aspell install
+
 install-ispell: ispell
 	$(MAKE) -C ispell install
 
+install-myspell: myspell
+	$(MAKE) -C myspell install
+
 #-----------------------------------------------------------------------------
 # Cleanup rules:
 
 clean:
-	rm -f words-$(language_code)
+	rm -f words-$(language_code) words-$(language_code).excluded
 	$(MAKE) -C aspell clean
+	$(MAKE) -C new_aspell clean
 	$(MAKE) -C ispell clean
-
+	$(MAKE) -C myspell clean