diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 19:01:15 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 19:01:15 (GMT) |
commit | 12166aa342f7c8d905097e43a1f50e0775503069 (patch) | |
tree | 73a6e7296fbf9898633a02c2503a3e959789d8c3 /ds9/library/Makefile | |
parent | d4d595fa7fb12903db9227d33d48b2b00120dbd1 (diff) | |
download | blt-12166aa342f7c8d905097e43a1f50e0775503069.zip blt-12166aa342f7c8d905097e43a1f50e0775503069.tar.gz blt-12166aa342f7c8d905097e43a1f50e0775503069.tar.bz2 |
Initial commit
Diffstat (limited to 'ds9/library/Makefile')
-rw-r--r-- | ds9/library/Makefile | 188 |
1 files changed, 188 insertions, 0 deletions
diff --git a/ds9/library/Makefile b/ds9/library/Makefile new file mode 100644 index 0000000..ef058c0 --- /dev/null +++ b/ds9/library/Makefile @@ -0,0 +1,188 @@ +SCRIPTS = \ + 2mass.tcl \ + 3d.tcl \ + array.tcl \ + analysis.tcl \ + analysisparam.tcl \ + annulus.tcl \ + ar.tcl \ + backup.tcl \ + bin.tcl \ + box.tcl \ + boxannulus.tcl \ + bpanda.tcl \ + buttons.tcl \ + cat.tcl \ + catcds.tcl \ + catcdssrch.tcl \ + catcdssrchdialog.tcl \ + catcmd.tcl \ + catcxc.tcl \ + catdialog.tcl \ + catflt.tcl \ + catmatch.tcl \ + catned.tcl \ + catopt.tcl \ + catplot.tcl \ + catreg.tcl \ + catsdss.tcl \ + catsimbad.tcl \ + catskybot.tcl \ + catsym.tcl \ + cattsv.tcl \ + catvot.tcl \ + centroid.tcl \ + circle.tcl \ + colorbar.tcl \ + comm.tcl \ + command.tcl \ + compass.tcl \ + composite.tcl \ + contour.tcl \ + convert.tcl \ + coord.tcl \ + cpanda.tcl \ + crop.tcl \ + crosshair.tcl \ + cube.tcl \ + debug.tcl \ + dialog.tcl \ + ellipse.tcl \ + ellipseannulus.tcl \ + envi.tcl \ + epanda.tcl \ + error.tcl \ + eso.tcl \ + examine.tcl \ + export.tcl \ + external.tcl \ + file.tcl \ + fits.tcl \ + frame.tcl \ + graph.tcl \ + grid.tcl \ + group.tcl \ + header.tcl \ + help.tcl \ + http.tcl \ + hv.tcl \ + hvform.tcl \ + hvsup.tcl \ + iis.tcl \ + imexam.tcl \ + imgsvr.tcl \ + import.tcl \ + info.tcl \ + layout.tcl \ + line.tcl \ + load.tcl \ + magnifier.tcl \ + marker.tcl \ + markeranalysispanda.tcl \ + markeranalysisplot2d.tcl \ + markeranalysisplot3d.tcl \ + markeranalysisradial.tcl \ + markeranalysisstats.tcl \ + markerbase.tcl \ + markerbaseannulus.tcl \ + markerbaseannulusrect.tcl \ + markerbasecenter.tcl \ + markerbaseline.tcl \ + markerbasepanda.tcl \ + markerbasepandarect.tcl \ + markerdialog.tcl \ + mask.tcl \ + manalysis.tcl \ + mbin.tcl \ + mcolor.tcl \ + mecube.tcl \ + medit.tcl \ + menu.tcl \ + mfile.tcl \ + mframe.tcl \ + mhelp.tcl \ + macosx.tcl \ + macosxextra.tcl \ + mosaicimage.tcl \ + mosaicimageiraf.tcl \ + mosaicimagewcs.tcl \ + mosaicimagewfpc2.tcl \ + mosaic.tcl \ + mosaiciraf.tcl \ + mosaicwcs.tcl \ + movie.tcl \ + mregion.tcl \ + mscale.tcl \ + multiframe.tcl \ + mview.tcl \ + mwcs.tcl \ + mzoom.tcl \ + nameres.tcl \ + nrrd.tcl \ + nsvr.tcl \ + nvss.tcl \ + pagesetup.tcl \ + panner.tcl \ + panzoom.tcl \ + pixel.tcl \ + photo.tcl \ + plot.tcl \ + plotbar.tcl \ + plotdialog.tcl \ + plotelement.tcl \ + plotline.tcl \ + plotprint.tcl \ + plotprocess.tcl \ + plotscatter.tcl \ + point.tcl \ + polygon.tcl \ + prefs.tcl \ + prefsdialog.tcl \ + print.tcl \ + projection.tcl \ + open.tcl \ + rgb.tcl \ + rgbarray.tcl \ + rgbcube.tcl \ + rgbimage.tcl \ + ruler.tcl \ + samp.tcl \ + sao.tcl \ + save.tcl \ + saveimage.tcl \ + scale.tcl \ + segment.tcl \ + sfits.tcl \ + shm.tcl \ + skyview.tcl \ + slider.tcl \ + smosaic.tcl \ + smosaiciraf.tcl \ + smosaicwcs.tcl \ + smooth.tcl \ + source.tcl \ + srgbcube.tcl \ + starbase.tcl \ + stdfbox.tcl \ + stsci.tcl \ + template.tcl \ + text.tcl \ + tkfbox.tcl \ + url.tcl \ + util.tcl \ + var.tcl \ + vector.tcl \ + vla.tcl \ + vo.tcl \ + wcs.tcl \ + win32.tcl \ + xmfbox.tcl \ + xpa.tcl + +.PHONY : msgs clean + +msgs : + grep 'msgcat::mc' $(SCRIPTS) | cut -d[ -f2 | sed -e 's/::mc/::mcset AAA /' -e 's/]/ ""/' | sort | uniq > ../msgs/tmpl.tcl + +clean : + $(RM) core *~ *# |