Index: trunk/psModules/src/pmObjects.c
===================================================================
--- trunk/psModules/src/pmObjects.c	(revision 3229)
+++ trunk/psModules/src/pmObjects.c	(revision 3231)
@@ -5,6 +5,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-01-25 02:45:43 $
+ *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-15 23:59:05 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -114,5 +114,5 @@
                     (image->data.F32[row][col] >  image->data.F32[row+1][col]) &&
                     (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
@@ -124,5 +124,5 @@
                     (image->data.F32[row][col] >  image->data.F32[row+1][col]) &&
                     (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
@@ -133,5 +133,5 @@
                     (image->data.F32[row][col] > image->data.F32[row+1][col]) &&
                     (image->data.F32[row][col] >= image->data.F32[row+1][col-1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
@@ -159,5 +159,5 @@
                     (image->data.F32[row][col] >= image->data.F32[row+1][col]) &&
                     (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
@@ -175,5 +175,5 @@
                     (image->data.F32[row][col] >= image->data.F32[row-1][col+1]) &&
                     (image->data.F32[row][col] >  image->data.F32[row][col+1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
@@ -185,5 +185,5 @@
                     (image->data.F32[row][col] >  image->data.F32[row][col-1]) &&
                     (image->data.F32[row][col] >= image->data.F32[row][col+1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
@@ -194,5 +194,5 @@
                     (image->data.F32[row][col] >  image->data.F32[row-1][col]) &&
                     (image->data.F32[row][col] >  image->data.F32[row][col-1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
Index: trunk/psModules/test/Makefile.am
===================================================================
--- trunk/psModules/test/Makefile.am	(revision 3229)
+++ trunk/psModules/test/Makefile.am	(revision 3231)
@@ -1,19 +1,15 @@
 bin_PROGRAMS = tst_pmFlatField tst_pmMaskBadPixels tst_pmNonLinear tst_pmSubtractBias tst_pmReadoutCombine tst_pmSubtractSky
 
+AM_LDFLAGS = -L../src -lpsmodule $(LDFLAGS)
+
 tst_pmFlatField_SOURCES = tst_pmFlatField.c
-tst_pmFlatField_LDFLAGS = -L../src -lpsmodule
 
 tst_pmMaskBadPixels_SOURCES = tst_pmMaskBadPixels.c
-tst_pmMaskBadPixels_LDFLAGS = -L../src -lpsmodule
 
 tst_pmNonLinear_SOURCES = tst_pmNonLinear.c
-tst_pmNonLinear_LDFLAGS = -L../src -lpsmodule
 
 tst_pmSubtractBias_SOURCES = tst_pmSubtractBias.c
-tst_pmSubtractBias_LDFLAGS = -L../src -lpsmodule
 
 tst_pmReadoutCombine_SOURCES = tst_pmReadoutCombine.c
-tst_pmReadoutCombine_LDFLAGS = -L../src -lpsmodule
 
 tst_pmSubtractSky_SOURCES = tst_pmSubtractSky.c
-tst_pmSubtractSky_LDFLAGS = -L../src -lpsmodule
