view tests/tooltalk/Makefile @ 1362:cfe4bcb9bdd4

[xemacs-hg @ 2003-03-18 06:58:19 by stephent] wid-edit.el cleanup <878yvdi2rz.fsf@tleepslib.sk.tsukuba.ac.jp> buffers tab control doc improvements <87bs09i3w5.fsf_-_@tleepslib.sk.tsukuba.ac.jp>
author stephent
date Tue, 18 Mar 2003 06:58:24 +0000
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.