view tests/tooltalk/Makefile @ 4859:262b29aedd54

Move def of CYGWIN_HEADERS to s files -------------------- ChangeLog entries follow: -------------------- src/ChangeLog addition: 2010-01-14 Ben Wing <ben@xemacs.org> * syswindows.h: Don't define CYGWIN_HEADERS here. 2010-01-14 Ben Wing <ben@xemacs.org> * s/cygwin32.h: * s/mingw32.h: Define here instead so it's available in all files. Fixes compile problems in database.c in some cases.
author Ben Wing <ben@xemacs.org>
date Thu, 14 Jan 2010 02:42:58 -0600
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.