Mercurial > hg > xemacs-beta
annotate tests/tooltalk/Makefile @ 952:c10d0c3f965f
[xemacs-hg @ 2002-08-02 16:54:11 by youngs]
2002-05-29 Katsumi Yamaoka <yamaoka@jpl.org>
* mule/japan-util.el (setup-japanese-environment-internal): Use
proper coding-systems.
2002-05-28 Katsumi Yamaoka <yamaoka@jpl.org>
* mule/japan-util.el: Use `characterp' instead of `integerp' while
defining char properties for katakana.
* mule/mule-category.el: Clear the category table before defining
categories for `predefined-category-list'.
* mule/mule-cmds.el (finish-set-language-environment): Fit the
charsets preferences in unicode conversions for the language
environment. Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
author | youngs |
---|---|
date | Fri, 02 Aug 2002 16:54:25 +0000 |
parents | 131b0175ea99 |
children | 9fc91aa3a927 |
rev | line source |
---|---|
70 | 1 ### Makefile - Makefile for ToolTalk testing executables |
2 | |
3 # Author: Vladimir Ivanovic <vladimir@Eng.Sun.COM> | |
4 # Maintainer: Vladimir Ivanovic <vladimir@Eng.Sun.COM> | |
5 # Created: 08 March 1995 | |
6 # Keywords: ToolTalk, testing | |
7 | |
8 # Copyright (C) 1995 Sun Microsystems, Inc | |
9 | |
10 ### Commentary: | |
11 # This is SPARCworks & Solaris 2.x-centric. | |
12 | |
13 ### Code: | |
14 | |
15 CC = cc -Xc | |
16 CPPFLAGS = -I/usr/openwin/include | |
17 CFLAGS = -g -v -DNeedFunctionPrototypes | |
18 LDFLAGS = -L/usr/openwin/lib -R/usr/openwin/lib -ltt | |
19 | |
20 all: emacs-eval load-file make-client-frame | |
21 | |
22 clean: | |
23 rm -f *.o emacs-eval load-file make-client-frame | |
24 | |
25 ### Makefile ends here. |