Index: /branches/eam_branches/ipp-20121219/ippToPsps/Makefile.am
===================================================================
--- /branches/eam_branches/ipp-20121219/ippToPsps/Makefile.am	(revision 34959)
+++ /branches/eam_branches/ipp-20121219/ippToPsps/Makefile.am	(revision 34960)
@@ -1,3 +1,4 @@
-SUBDIRS = src
+# SUBDIRS = config jars jython src
+SUBDIRS = config jars jython
 
 CLEANFILES = *.pyc *~ core core.*
Index: /branches/eam_branches/ipp-20121219/ippToPsps/configure.ac
===================================================================
--- /branches/eam_branches/ipp-20121219/ippToPsps/configure.ac	(revision 34959)
+++ /branches/eam_branches/ipp-20121219/ippToPsps/configure.ac	(revision 34960)
@@ -43,4 +43,7 @@
 AC_CONFIG_FILES([
   Makefile
+  config/Makefile
+  jars/Makefile
+  jython/Makefile
   src/Makefile
   Doxyfile
Index: /branches/eam_branches/ipp-20121219/ippToPsps/doc/concerns.txt
===================================================================
--- /branches/eam_branches/ipp-20121219/ippToPsps/doc/concerns.txt	(revision 34959)
+++ /branches/eam_branches/ipp-20121219/ippToPsps/doc/concerns.txt	(revision 34960)
@@ -48,2 +48,23 @@
    prevents testing.
 
+* a variety of issues in getting the dvodetection.py code to work
+  (basically, the mods to the sql were wrong)
+
+
+-----
+
+config / build / install plan:
+
+1) everything needs to be installed in the IPP (psconfig-based) build
+   location
+2) relative path references need to be changed to absolute paths based
+   on the installed locations
+3) the config/IN tables.vot needs to have a small test version (maybe
+   this is temporary)
+4) replace the tables.vot ingest with something faster / more
+   reliable?
+5) need a script to launch the code with correct paths set up
+6) jython code needs to be included in the supplied libext code
+7) java needs to installed externally (like perl), but the install
+   location may need to be supplied?
+8) need a (single?) script to set up all ops databases
Index: /branches/eam_branches/ipp-20121219/ippToPsps/jars/Makefile.am
===================================================================
--- /branches/eam_branches/ipp-20121219/ippToPsps/jars/Makefile.am	(revision 34960)
+++ /branches/eam_branches/ipp-20121219/ippToPsps/jars/Makefile.am	(revision 34960)
@@ -0,0 +1,14 @@
+jar_files = \
+  commons-math-2.2.jar \
+  mysql-connector-java-5.1.14-bin.jar \
+  stilts.jar
+
+jardir = $(datadir)/jar
+jar_DATA = $(jar_files)
+
+install-data-hook:
+	chmod 0755 $(jardir)
+
+EXTRA_DIST = $(jar_files)
+
+ACLOCAL_AMFLAGS = -I m4
Index: /branches/eam_branches/ipp-20121219/ippToPsps/jython/Makefile.am
===================================================================
--- /branches/eam_branches/ipp-20121219/ippToPsps/jython/Makefile.am	(revision 34960)
+++ /branches/eam_branches/ipp-20121219/ippToPsps/jython/Makefile.am	(revision 34960)
@@ -0,0 +1,44 @@
+bin_SCRIPTS = ippjython.sh
+
+jython_files = \
+  batch.py \
+  batchRepublisher.py \
+  cleanup.py \
+  config.py \
+  console.py \
+  czardb.py \
+  datastore.py \
+  datastoreRemover.py \
+  detectionbatch.py \
+  dvodetections.py \
+  dvoobjects.py \
+  dvo.py \
+  dxlayer.py \
+  fits.py \
+  gpc1db.py \
+  initbatch.py \
+  ipptopspsdb.py \
+  ipptopsps.py \
+  loader.py \
+  metrics.py \
+  mysql.py \
+  objectbatch.py \
+  odm.py \
+  plot.py \
+  plotter.py \
+  pollOdm.py \
+  pslogger.py \
+  queue.py \
+  scratchdb.py \
+  setupScratchDb.py \
+  stackbatch.py
+
+jythondir = $(datadir)/jython
+jython_DATA = $(jython_files)
+
+install-data-hook:
+	chmod 0755 $(jythondir)
+
+EXTRA_DIST = $(jython_files)
+
+ACLOCAL_AMFLAGS = -I m4
