#
# @(#)Makefile.customer 1.1 98/08/03 SMI
#
# Copyright (c) 1998 by Sun Microsystems, Inc.
# All Rights Reserved
#
# Makefile for the test directory
#
# None of the files in this directory is to be released.
# This is for development only.
#

.KEEP_STATE:

ARCH:sh        = /usr/bin/uname -p
OGLHOME:sh     = echo ${OGLHOME:-/usr/openwin}
OPENWINHOME:sh = echo ${OPENWINHOME:-/usr/openwin}
CFLAGS         = -g 
CPPFLAGS      += -I$(OGLHOME)/include -I$(OPENWINHOME)/include
LDFLAGS        = -R$(OGLHOME)/lib:/usr/openwin/lib
LDFLAGS       += -L$(OGLHOME)/lib -L$(OPENWINHOME)/lib
LDFLAGS       += -lGL -lGLU -lX11 -lXmu -lm
TESTS          = ogl_constdata_ex1

default: $(TESTS)

clean:
	$(RM) $(TESTS) *.o core #*# *~
