Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: third_party/hyphen/Makefile.am

Issue 20860003: Remove hyphenation code from Chromium. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/hyphen/INSTALL ('k') | third_party/hyphen/Makefile.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 SUBDIRS= doc tests
2
3 lib_LTLIBRARIES = libhyphen.la
4 libhyphen_la_SOURCES = hnjalloc.c hyphen.c
5 libhyphen_la_LDFLAGS = -version-info 2:0:2
6 include_HEADERS = hyphen.h
7 noinst_HEADERS = hnjalloc.h
8
9 noinst_PROGRAMS = substrings example
10 substrings_SOURCES = substrings.c
11 example_SOURCES = example.c
12 example_LDADD = libhyphen.la
13
14 bin_SCRIPTS = substrings.pl
15
16 hyphdir = $(datadir)/hyphen
17
18 # use it if you can recreate hyph_en_US.dic from
19 hyph_DATA = hyph_en_US.dic
20
21 EXTRA_DIST = checkme.lst hyphen.tex tbhyphext.tex tbhyphext.sh \
22 README.compound README.hyphen README.nonstandard substrings.pl hyphen.patch \
23 COPYING.MPL COPYING.LGPL hyph_en_US.dic README_hyph_en_US.txt lig.awk \
24 ligpatch.txt ooopatch.sed
25
26 hyphen.us3:
27 cp -f $(srcdir)/hyphen.tex hyphen.us
28 patch < $(srcdir)/hyphen.patch
29 $(srcdir)/tbhyphext.sh <$(srcdir)/tbhyphext.tex >hyphen.us2
30 cat hyphen.us hyphen.us2 | $(AWK) -f $(srcdir)/lig.awk >hyphen.us3
31 cat $(srcdir)/ligpatch.txt >>hyphen.us3
32
33 hyph_en_US.dic: hyphen.us3
34 perl $(srcdir)/substrings.pl hyphen.us3 hyphen.us4 UTF-8 2 3 >/dev/null
35 cat hyphen.us4 | $(SED) -f $(srcdir)/ooopatch.sed >hyph_en_US.dic
36
37 clean-local:
38 rm -rf hyphen.us* hyph_en_US.dic
OLDNEW
« no previous file with comments | « third_party/hyphen/INSTALL ('k') | third_party/hyphen/Makefile.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698