Index: trunk/Ohana/src/opihi/cmd.astro/Makefile
===================================================================
--- trunk/Ohana/src/opihi/cmd.astro/Makefile	(revision 17282)
+++ trunk/Ohana/src/opihi/cmd.astro/Makefile	(revision 17283)
@@ -17,4 +17,5 @@
 srcs = \
 $(SRC)/init.$(ARCH).o             \
+$(SRC)/altaz.$(ARCH).o	           \
 $(SRC)/biassub.$(ARCH).o	   \
 $(SRC)/cgrid.$(ARCH).o		   \
Index: trunk/Ohana/src/opihi/cmd.astro/init.c
===================================================================
--- trunk/Ohana/src/opihi/cmd.astro/init.c	(revision 17282)
+++ trunk/Ohana/src/opihi/cmd.astro/init.c	(revision 17283)
@@ -1,4 +1,5 @@
 # include "astro.h"
 
+int altaz                   PROTO((int, char **));
 int biassub                 PROTO((int, char **));
 int cgrid                   PROTO((int, char **));
@@ -36,4 +37,5 @@
 
 static Command cmds[] = {  
+  {1, "altaz",       altaz,        "convert alt/az to/from ra/dec"},
   {1, "biassub",     biassub,      "subtract medianed overscan row or column"},
   {1, "cgrid",       cgrid,        "plot sky coordinate grid"},
Index: trunk/Ohana/src/opihi/dimm/Makefile
===================================================================
--- trunk/Ohana/src/opihi/dimm/Makefile	(revision 17282)
+++ trunk/Ohana/src/opihi/dimm/Makefile	(revision 17283)
@@ -26,5 +26,4 @@
 $(SRC)/init.$(ARCH).o		  	\
 $(SRC)/dimm.$(ARCH).o		  	\
-$(SRC)/altaz.$(ARCH).o		  	\
 $(SRC)/camera.$(ARCH).o	  	\
 $(SRC)/findstars.$(ARCH).o	  	\
Index: trunk/Ohana/src/opihi/dimm/init.c
===================================================================
--- trunk/Ohana/src/opihi/dimm/init.c	(revision 17282)
+++ trunk/Ohana/src/opihi/dimm/init.c	(revision 17283)
@@ -1,5 +1,4 @@
 # include "dimm.h"
 
-int altaz           PROTO((int, char **));
 int camera          PROTO((int, char **));
 int findstars       PROTO((int, char **));
@@ -8,5 +7,4 @@
 
 static Command cmds[] = {  
-  {1, "altaz",     altaz,     "altaz / celestial coord conversions"},
   {1, "camera",    camera,    "camera functions"},
   {1, "findstars", findstars, "find objects on image"},
