view tests/tooltalk/Makefile @ 5145:0b0241ae382f

fix bug in generating display-table entries for error octet characters -------------------- ChangeLog entries follow: -------------------- lisp/ChangeLog addition: 2010-03-15 Ben Wing <ben@xemacs.org> * mule/mule-cmds.el: * mule/mule-cmds.el (finish-set-language-environment): Fix bug in generating display-table entries for error octet characters.
author Ben Wing <ben@xemacs.org>
date Mon, 15 Mar 2010 16:15:12 -0500
parents 131b0175ea99
children 9fc91aa3a927
line wrap: on
line source

### Makefile - Makefile for ToolTalk testing executables

# Author:	Vladimir Ivanovic <vladimir@Eng.Sun.COM>
# Maintainer:	Vladimir Ivanovic <vladimir@Eng.Sun.COM>
# Created:	08 March 1995
# Keywords:	ToolTalk, testing

# Copyright (C) 1995 Sun Microsystems, Inc

### Commentary:
#   This is SPARCworks & Solaris 2.x-centric.

### Code:

CC       = cc -Xc
CPPFLAGS = -I/usr/openwin/include
CFLAGS   = -g -v -DNeedFunctionPrototypes
LDFLAGS  = -L/usr/openwin/lib -R/usr/openwin/lib -ltt

all:	emacs-eval load-file make-client-frame

clean:
	rm -f *.o emacs-eval load-file make-client-frame

### Makefile ends here.