IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 12, 2005, 9:12:01 AM (21 years ago)
Author:
desonia
Message:

massive restructuring of codebase.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/Makefile.am

    r4446 r4540  
    1 #Makefile for sysUtils functions of psLib
     1#Makefile for sys functions of psLib
    22#
    3 INCLUDES = \
    4         -I$(top_srcdir)/src/astro \
    5         -I$(top_srcdir)/src/db \
    6         -I$(top_srcdir)/src/fft \
    7         -I$(top_srcdir)/src/fits \
    8         -I$(top_srcdir)/src/imageops \
    9         -I$(top_srcdir)/src/math \
    10         -I$(top_srcdir)/src/mathtypes \
    11         -I$(top_srcdir)/src/sys \
    12         -I$(top_srcdir)/src/types \
    13         -I$(top_srcdir)/src/xml \
    14         $(all_includes)
     3noinst_LTLIBRARIES = libpslibsys.la
    154
    16 noinst_LTLIBRARIES = libpslibsysUtils.la
     5libpslibsys_la_SOURCES = \
     6        psAbort.c \
     7        psConfigure.c  \
     8        psError.c      \
     9        psErrorCodes.c \
     10        psLogMsg.c     \
     11        psMemory.c     \
     12        psString.c     \
     13        psTrace.c
    1714
    18 libpslibsysUtils_la_SOURCES = \
    19         psMemory.c     \
    20         psError.c      \
    21         psTrace.c      \
    22         psLogMsg.c     \
    23         psAbort.c      \
    24         psString.c     \
    25         psConfigure.c  \
    26         psErrorCodes.c
     15EXTRA_DIST = sys.i
    2716
    28 BUILT_SOURCES = psSysUtilsErrors.h
    29 EXTRA_DIST = psSysUtilsErrors.dat psSysUtilsErrors.h sysUtils.i
     17BUILT_SOURCES = psErrorCodes.c
    3018
    31 psSysUtilsErrors.h: psSysUtilsErrors.dat
    32         $(top_srcdir)/src/psParseErrorCodes --data=$? $@
     19psErrorCodes.c: ../psErrorCodes_$(LANG).dat psErrorCodes.c.in psErrorCodes.h
     20        $(top_srcdir)/psParseErrorCodes --data=../psErrorCodes_$(LANG).dat $@
     21
     22psError.h: psErrorCodes.h
     23
     24psErrorCodes.h: ../psErrorCodes_$(LANG).dat psErrorCodes.h.in
     25        $(top_srcdir)/psParseErrorCodes --data=../psErrorCodes_$(LANG).dat $@
    3326
    3427pslibincludedir = $(includedir)
    3528pslibinclude_HEADERS = \
    36         psType.h       \
     29        psAbort.h \
     30        psConfigure.h  \
     31        psError.h      \
     32        psErrorCodes.h \
     33        psLogMsg.h     \
    3734        psMemory.h     \
    38         psError.h      \
     35        psString.h     \
    3936        psTrace.h      \
    40         psLogMsg.h     \
    41         psAbort.h      \
    42         psString.h     \
    43         psConfigure.h  \
    44         psErrorCodes.h
    45 
     37        psType.h
Note: See TracChangeset for help on using the changeset viewer.