view tests/tooltalk/Makefile @ 2658:a48989ca6db3

[xemacs-hg @ 2005-03-13 09:20:58 by crestani] Fix native Windows build if DEBUG_XEMACS is not defined. * alloc.c (MALLOC_BEGIN): Remove unused parameter. * intl-win32.c (unicode_multibyte_convert_size): Move function call out of assert.
author crestani
date Sun, 13 Mar 2005 09:21:04 +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.