#:ts=8
#
# $Id: Makefile,v 1.4 1995/08/23 21:29:38 steppler Exp $
#	
# Makefile CNCL lib/random/test
#
TOPDIR	= ../../..

include $(TOPDIR)/make.conf

FILES = Makefile tD.c tG.c tMix.c tRndInt.c tSSMP2.c tTab.c

TESTS	= tG tD tRndInt tTab tMix tSSMP2


all:	$(TESTS)

tG:		tG.o
	$(CC) $(LFLAGS) -o tG tG.o $(LIBS)

tD:		tD.o
	$(CC) $(LFLAGS) -o tD tD.o $(LIBS)

tRndInt:	tRndInt.o
	$(CC) $(LFLAGS) -o tRndInt tRndInt.o $(LIBS)

tTab:		tTab.o
	$(CC) $(LFLAGS) -o tTab tTab.o $(LIBS)

tMix:		tMix.o
	$(CC) $(LFLAGS) -o tMix tMix.o $(LIBS)

tSSMP2:		tSSMP2.o
	$(CC) $(LFLAGS) -o tSSMP2 tSSMP2.o $(LIBS)

veryclean distclean::
	rm -f $(TESTS)

# Common stuff
include $(TOPDIR)/make.common
