XEmacs 21.2-b1
[chise/xemacs-chise.git.1] / tests / tooltalk / Makefile
diff --git a/tests/tooltalk/Makefile b/tests/tooltalk/Makefile
new file mode 100644 (file)
index 0000000..ba5240b
--- /dev/null
@@ -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.