Index: unk/ppStac/.cvsignore
===================================================================
--- /trunk/ppStac/.cvsignore	(revision 13462)
+++ 	(revision )
@@ -1,17 +1,0 @@
-aclocal.m4
-compile
-config.guess
-config.log
-config.status
-config.sub
-configure
-depcomp
-install-sh
-libtool
-ltmain.sh
-Makefile
-Makefile.in
-missing
-ppStac.pc
-test
-autom4te.cache
Index: unk/ppStac/Makefile.am
===================================================================
--- /trunk/ppStac/Makefile.am	(revision 13462)
+++ 	(revision )
@@ -1,3 +1,0 @@
-SUBDIRS = src
-
-CLEANFILES = *~ core core.*
Index: unk/ppStac/autogen.sh
===================================================================
--- /trunk/ppStac/autogen.sh	(revision 13462)
+++ 	(revision )
@@ -1,103 +1,0 @@
-#!/bin/sh
-# Run this to generate all the initial makefiles, etc.
-
-srcdir=`dirname $0`
-test -z "$srcdir" && srcdir=.
-
-ORIGDIR=`pwd`
-cd $srcdir
-
-PROJECT=ppStack
-TEST_TYPE=-f
-# change this to be a unique filename in the top level dir
-FILE=autogen.sh
-
-DIE=0
-
-LIBTOOLIZE=libtoolize
-ACLOCAL="aclocal $ACLOCAL_FLAGS"
-AUTOHEADER=autoheader
-AUTOMAKE=automake
-AUTOCONF=autoconf
-
-($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 || {
-        echo
-        echo "You must have $LIBTOOlIZE installed to compile $PROJECT."
-        echo "Download the appropriate package for your distribution,"
-        echo "or get the source tarball at http://ftp.gnu.org/gnu/libtool/"
-        DIE=1
-}
-
-($ACLOCAL --version) < /dev/null > /dev/null 2>&1 || {
-        echo
-        echo "You must have $ACLOCAL installed to compile $PROJECT."
-        echo "Download the appropriate package for your distribution,"
-        echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/"
-        DIE=1
-}
-
-($AUTOHEADER --version) < /dev/null > /dev/null 2>&1 || {
-        echo
-        echo "You must have $AUTOHEADER installed to compile $PROJECT."
-        echo "Download the appropriate package for your distribution,"
-        echo "or get the source tarball at http://ftp.gnu.org/gnu/autoconf/"
-        DIE=1
-}
-
-($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || {
-        echo
-        echo "You must have $AUTOMAKE installed to compile $PROJECT."
-        echo "Download the appropriate package for your distribution,"
-        echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/"
-        DIE=1
-}
-
-($AUTOCONF --version) < /dev/null > /dev/null 2>&1 || {
-        echo
-        echo "You must have $AUTOCONF installed to compile $PROJECT."
-        echo "Download the appropriate package for your distribution,"
-        echo "or get the source tarball at http://ftp.gnu.org/gnu/autoconf/"
-        DIE=1
-}
-
-if test "$DIE" -eq 1; then
-        exit 1
-fi
-
-test $TEST_TYPE $FILE || {
-        echo "You must run this script in the top-level $PROJECT directory"
-        exit 1
-}
-
-if test -z "$*"; then
-        echo "I am going to run ./configure with no arguments - if you wish "
-        echo "to pass any to it, please specify them on the $0 command line."
-fi
-
-$LIBTOOLIZE --copy --force || echo "$LIBTOOlIZE failed"
-$ACLOCAL || echo "$ACLOCAL failed"
-$AUTOHEADER || echo "$AUTOHEADER failed"
-$AUTOMAKE --add-missing --force-missing --copy || echo "$AUTOMAKE failed"
-$AUTOCONF || echo "$AUTOCONF failed"
-
-cd $ORIGDIR
-
-run_configure=true
-for arg in $*; do
-    case $arg in
-        --no-configure)
-            run_configure=false
-            ;;
-        *)
-            ;;
-    esac
-done
-
-if $run_configure; then
-    $srcdir/configure --enable-maintainer-mode "$@"
-    echo
-    echo "Now type 'make' to compile $PROJECT."
-else
-    echo
-    echo "Now run 'configure' and 'make' to compile $PROJECT."
-fi
Index: unk/ppStac/configure.ac
===================================================================
--- /trunk/ppStac/configure.ac	(revision 13462)
+++ 	(revision )
@@ -1,33 +1,0 @@
-AC_PREREQ(2.59)
-
-AC_INIT([ppStack], [0.1.1], [ipp-support@ifa.hawaii.edu])
-AC_CONFIG_SRCDIR([src])
-
-AM_INIT_AUTOMAKE([1.6 foreign dist-bzip2])
-AM_CONFIG_HEADER([src/config.h])
-AM_MAINTAINER_MODE
-
-IPP_STDCFLAGS
-
-AC_LANG(C)
-AC_GNU_SOURCE
-AC_PROG_CC_C99
-AC_PROG_INSTALL
-AC_PROG_LIBTOOL
-AC_SYS_LARGEFILE 
-
-PKG_CHECK_MODULES([PSLIB], [pslib >= 1.0.0])
-PKG_CHECK_MODULES([PSMODULE], [psmodules >= 1.0.0])
-PKG_CHECK_MODULES([PPSTATS], [ppStats >= 1.0.0]) 
-
-IPP_STDOPTS
-CFLAGS="${CFLAGS=} -Wall -Werror"
-
-AC_SUBST([PPSTACK_CFLAGS])
-AC_SUBST([PPSTACK_LIBS])
-
-AC_CONFIG_FILES([
-  Makefile
-  src/Makefile
-])
-AC_OUTPUT
Index: unk/ppStac/src/.cvsignore
===================================================================
--- /trunk/ppStac/src/.cvsignore	(revision 13462)
+++ 	(revision )
@@ -1,10 +1,0 @@
-.deps
-Makefile
-Makefile.in
-.libs
-*.lo
-*.la
-ppStack
-config.h
-config.h.in
-stamp-h1
Index: unk/ppStac/src/Makefile.am
===================================================================
--- /trunk/ppStac/src/Makefile.am	(revision 13462)
+++ 	(revision )
@@ -1,23 +1,0 @@
-bin_PROGRAMS = ppStack
-
-ppStack_CFLAGS 	= $(PSMODULE_CFLAGS) $(PSLIB_CFLAGS) $(PPSTATS_CFLAGS)$(PPSTACK_CFLAGS)
-ppStack_LDFLAGS = $(PSMODULE_LIBS) $(PSLIB_LIBS) $(PPSTATS_LIBS) $(PPSTACK_LIBS)
-
-ppStack_SOURCES =		\
-	ppStack.c		\
-	ppStackArguments.c	\
-	ppStackCamera.c		\
-	ppStackLoop.c		\
-	ppStackReadout.c	\
-	ppStackVersion.c
-
-noinst_HEADERS = 		\
-	ppStack.h
-
-CLEANFILES = *~
-
-clean-local:
-	-rm -f TAGS
-# Tags for emacs
-tags:
-	etags `find . -name \*.[ch] -print`
