summary refs log tree commit diff stats
path: root/makefile
diff options
context:
space:
mode:
authorkaa <kaa@disroot.org>2023-07-05 13:32:01 -0700
committerkaa <kaa@disroot.org>2023-07-05 13:32:01 -0700
commit8987d13d3c1a62d2d1db6ecabb29bc76f3529a44 (patch)
tree01ee36e8f13438d6cc707f9b918c9ce3af4a5ba4 /makefile
parent09819bcd940492c8ccc48284880f8bc652a2845a (diff)
downloadhyp-master.tar.gz
Add spanish hyphenation patterns, and support for building an executable that finds those hyphenation patterns. HEAD master
Diffstat (limited to 'makefile')
-rw-r--r--makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/makefile b/makefile
index f58cf19..84b0f21 100644
--- a/makefile
+++ b/makefile
@@ -4,16 +4,17 @@ CFLAGS = -Wall -I/usr/local/include
 CFLAGS += -std=c89
 LDFLAGS = -L/usr/local/lib -lhyphen
 LDFLAGS += -static
-out = hyp
 bindir = /home/kaa/bin
 
-all: $(out)
+all: hyp
 
-.c:
-	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
+hyp:
+	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ en.c hyp.c
+hyp-es:
+	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ es.c hyp.c
 
 clean:
-	rm -f $(out)
+	rm -f hyp hyp-es
 
 install: all
 	cp hyp $(bindir)/hyp
revision' href='/akkartik/mu/blame/html/continuation5.mu.html?h=main&id=3b776ac3843e925ee24f49e8df51ab6a1db6c085'>^
fe8bf967 ^
805d58c6 ^

d55e7738 ^


































4a48bedc ^
d55e7738 ^



ef7d834f ^









b301e0c0 ^
ef7d834f ^
b301e0c0 ^
ef7d834f ^


b301e0c0 ^
ef7d834f ^

805d58c6 ^




ef7d834f ^


b301e0c0 ^
ef7d834f ^
4a48bedc ^
ef7d834f ^

805d58c6 ^


b301e0c0 ^
805d58c6 ^


ef7d834f ^
e82dc626 ^
ef7d834f ^

d55e7738 ^



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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112