forked from en-wl/wordlist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
46 lines (34 loc) · 955 Bytes
/
Makefile
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
all: prep scowl
.PHONY: scowl
scowl:
$(MAKE) -C scowl
.PHONY: clean
clean:
$(MAKE) -C scowl clean
prep: .dirs .enable .enable-sup .ukacd .yawl .mwords .census .uk-freq-class
.dirs:
mkdir -p scowl/working scowl/final
touch .dirs
.enable: other/enable2k.zip
unzip -LL other/enable2k.zip -d enable
touch .enable
.enable-sup: other/supp2k.zip
unzip -LL other/supp2k.zip -d enable-sup
cp other/supp2k-nopos.lst enable-sup/nopos.lst
touch .enable-sup
.ukacd: other/ukacd17.zip
unzip -LL other/ukacd17.zip -d ukacd
touch .ukacd
.yawl: other/yawl-0.2.tar.gz
tar -x -v -z -C yawl -f other/yawl-0.2.tar.gz --strip-components=1
touch .yawl
.mwords: other/mwords.tar.gz
tar xfvz other/mwords.tar.gz
touch mwords
touch .mwords
.census: other/census-names-1990.zip
unzip other/census-names-1990.zip -d census
touch .census
.uk-freq-class: other/wlist.html.gz
gunzip -c other/wlist.html.gz > uk-freq-class/wlist.html
touch .uk-freq-class