#
# @(#)Makefile	1.3 98/04/21
#
# Makefile for building the AlphaComposite testing suite for Solaris.
#

OBJS = \
	alphatest.o \
	reference.o \
	proxyset.o \
	nullset.o \
	intset.o \
	intset2.o \
	beta3set.o \
	lists.o \
	testvals.o

JDK_WS = ../../../../..
JDK_INCLUDES = -I$(JDK_WS)/src/share/native/sun/awt/alphacomposite

CFLAGS = -O
#CFLAGS = -g

.KEEP_STATE:

all: alphatest

$(OBJS): alphatest.h

beta3set.o:= CFLAGS += $(JDK_INCLUDES)
reference.o:= CFLAGS = -fast

alphatest: $(OBJS)
	cc -o alphatest $(OBJS) -ldl

clean:
	rm -f $(OBJS) alphatest
