summaryrefslogtreecommitdiff
path: root/plot/Jamfile
diff options
context:
space:
mode:
Diffstat (limited to 'plot/Jamfile')
-rw-r--r--plot/Jamfile27
1 files changed, 27 insertions, 0 deletions
diff --git a/plot/Jamfile b/plot/Jamfile
new file mode 100644
index 0000000..47bc09e
--- /dev/null
+++ b/plot/Jamfile
@@ -0,0 +1,27 @@
+
+# Jamfile for plot library and test program
+
+#PREF_CCFLAGS = $(CCOPTFLAG) ; # Turn optimisation on
+PREF_CCFLAGS = $(CCDEBUGFLAG) ; # Debugging flags
+PREF_LINKFLAGS = $(LINKDEBUGFLAG) ;
+
+# Compile .c as .m
+if $(OS) = MACOSX {
+ ObjectCcFlags plot : -ObjC ;
+ ObjectCcFlags plot_plot : -ObjC ;
+}
+
+# PLOT library
+Library libplot : plot.c : : : ../h ../numlib ../spectro ;
+if $(UNIX) && $(OS) != MACOSX {
+ ObjectHdrs plot : $(LibWinH) ;
+}
+
+# Individual stand alone test of plot library
+MainVariant plot : plot.c : : STANDALONE_TEST : ../h ../numlib ../spectro : : ../spectro/libconv.lib ../numlib/libnum.lib ;
+
+# VRML plot library
+Library libvrml : vrml.c : : : ../h ../icc ../cgats ../numlib ../gamut ;
+
+#MainsFromSources t.c ;
+