# A makefile for the stuff now in libg++/etc

srcdir = .

CXX=gcc
CPPFLAGS=-I. -I/d/libgp271/g++-include 
LIBS=/d/libgp271/lib/libg++.a /d/libgp271/lib/libstdc++.a
DEPEND_SOURCES = $(srcdir)/*.cc

#### package, host, target, and site dependent Makefile fragments come in here.
##

check: tPlotFile3D
	./tPlotFile3D
	@echo use plot to look at the plot file test.pl

tPlotFile3D: PlotFile3D.o tPlotFile3D.o
	$(CXX) tPlotFile3D.o PlotFile3D.o $(LIBS) -lpml -o $@
