From fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 8 Jul 2015 20:46:52 -0400 Subject: Initial commit --- pkg/plot/mkpkg | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 pkg/plot/mkpkg (limited to 'pkg/plot/mkpkg') diff --git a/pkg/plot/mkpkg b/pkg/plot/mkpkg new file mode 100644 index 00000000..f9f897e0 --- /dev/null +++ b/pkg/plot/mkpkg @@ -0,0 +1,80 @@ +# Make the PLOT package. + +$call relink +$exit + +update: + $call relink + $call install + ; + +relink: + $update libpkg.a + $call linkplot + $call linkncar + ; + +install: + $move xx_plot.e bin$x_plot.e + $move xx_ncar.e bin$x_ncar.e + ; + +ncar: + $update libpkg.a + $call linkncar + ; +linkncar: + $set LIBS = "-lncar -lgks -lxtools" + $omake x_ncar.x + $link x_ncar.o libpkg.a $(LIBS) -o xx_ncar.e + ; + +plot: + $update libpkg.a + $call linkplot + ; +linkplot: + $set LIBS = "-lncar -lgks -lxtools -liminterp" + $omake x_plot.x + $link x_plot.o libpkg.a $(LIBS) -o xx_plot.e + ; + +libpkg.a: + @crtpict + + gdevices.x + getdata.x + hgpline.x + improject.x + impprofile.x + impstatus.x + initmarker.x + perim.x + phistogram.x + phminmax.x + pltwcs.x + t_contour.x \ + + t_gkidir.x + t_gkimos.x \ + + t_gkixt.x + t_graph.x \ + + t_hafton.x \ + + t_implot.x \ + + t_pcol.x + t_pcols.x + t_pradprof.x + t_prow.x + t_prows.x + t_pvector.x \ + + t_surface.x \ + + t_velvect.x \ + + vport.x + ; -- cgit