Index: /trunk/glueforge/glueforge.in
===================================================================
--- /trunk/glueforge/glueforge.in	(revision 3617)
+++ /trunk/glueforge/glueforge.in	(revision 3618)
@@ -3,5 +3,5 @@
 # Copyright (C) 2005  Joshua Hoblitt
 #
-# $Id: glueforge.in,v 1.2 2005-04-01 03:58:22 jhoblitt Exp $
+# $Id: glueforge.in,v 1.3 2005-04-01 04:03:24 jhoblitt Exp $
 
 use strict;
@@ -52,4 +52,5 @@
 
 $data{data_type} = $data{table_name} . "Row";
+$data{lib_name}  = $data{table_name} . "db";
 $data{namespace} = $data{table_name};
 
Index: /trunk/glueforge/templates/psdb/configure_ac.tt
===================================================================
--- /trunk/glueforge/templates/psdb/configure_ac.tt	(revision 3617)
+++ /trunk/glueforge/templates/psdb/configure_ac.tt	(revision 3618)
@@ -1,4 +1,4 @@
 dnl Process this file with autoconf to produce a configure script.
-AC_INIT([[% table_name %]db], [0.0.1], [pan-starrs.ifa.hawaii.edu])
+AC_INIT([[% lib_name %]], [0.0.1], [pan-starrs.ifa.hawaii.edu])
 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
 AM_CONFIG_HEADER(src/config.h)
Index: /trunk/glueforge/templates/psdb/src_makefile_am.tt
===================================================================
--- /trunk/glueforge/templates/psdb/src_makefile_am.tt	(revision 3617)
+++ /trunk/glueforge/templates/psdb/src_makefile_am.tt	(revision 3618)
@@ -2,8 +2,8 @@
 AM_LIBS     = $(PSLIB_LIBS)
 
-include_HEADERS=[% table_name %]db.h
-lib_LTLIBRARIES = lib[% table_name %]db.la
-lib[% table_name %]db_la_LDFLAGS = -release @PACKAGE_VERSION@
-lib[% table_name %]db_la_SOURCES =\
-    [% table_name %]db.h\
-    [% table_name %]db.c
+include_HEADERS=[% lib_name %].h
+lib_LTLIBRARIES = lib[% lib_name %].la
+lib[% lib_name %]_la_LDFLAGS = -release @PACKAGE_VERSION@
+lib[% lib_name %]_la_SOURCES =\
+    [% lib_name %].h\
+    [% lib_name %].c
