Mercurial > hg > xemacs-beta
diff tests/tooltalk/Makefile @ 70:131b0175ea99 r20-0b30
Import from CVS: tag r20-0b30
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:02:59 +0200 |
parents | |
children | 9fc91aa3a927 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/tooltalk/Makefile Mon Aug 13 09:02:59 2007 +0200 @@ -0,0 +1,25 @@ +### 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.