Index: trunk/psLib/src/sys/Makefile.am
===================================================================
--- trunk/psLib/src/sys/Makefile.am	(revision 4446)
+++ trunk/psLib/src/sys/Makefile.am	(revision 4446)
@@ -0,0 +1,45 @@
+#Makefile for sysUtils functions of psLib
+#
+INCLUDES = \
+	-I$(top_srcdir)/src/astro \
+	-I$(top_srcdir)/src/db \
+	-I$(top_srcdir)/src/fft \
+	-I$(top_srcdir)/src/fits \
+	-I$(top_srcdir)/src/imageops \
+	-I$(top_srcdir)/src/math \
+	-I$(top_srcdir)/src/mathtypes \
+	-I$(top_srcdir)/src/sys \
+	-I$(top_srcdir)/src/types \
+	-I$(top_srcdir)/src/xml \
+	$(all_includes)
+
+noinst_LTLIBRARIES = libpslibsysUtils.la
+
+libpslibsysUtils_la_SOURCES = \
+	psMemory.c     \
+	psError.c      \
+	psTrace.c      \
+	psLogMsg.c     \
+	psAbort.c      \
+	psString.c     \
+	psConfigure.c  \
+	psErrorCodes.c
+
+BUILT_SOURCES = psSysUtilsErrors.h
+EXTRA_DIST = psSysUtilsErrors.dat psSysUtilsErrors.h sysUtils.i
+
+psSysUtilsErrors.h: psSysUtilsErrors.dat
+	$(top_srcdir)/src/psParseErrorCodes --data=$? $@
+
+pslibincludedir = $(includedir)
+pslibinclude_HEADERS = \
+	psType.h       \
+	psMemory.h     \
+	psError.h      \
+	psTrace.h      \
+	psLogMsg.h     \
+	psAbort.h      \
+	psString.h     \
+	psConfigure.h  \
+	psErrorCodes.h
+
