# ------------------ SOPHYA ------------------------- # Makefile for compiling and linking C++ programs # with SOPHYA # The SOPHYABASE environment variable should be defined include $(SOPHYABASE)/include/sophyamake.inc all : ex1 clean : rm ex1.o ex1 ex1 : ex1.o $(CXXLINK) -o ex1 ex1.o $(SOPHYASLBLIST) ex1.o : ex1.cc $(CXXCOMPILE) -c -o ex1.o ex1.cc