IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1787


Ignore:
Timestamp:
Sep 10, 2004, 2:43:54 PM (22 years ago)
Author:
desonia
Message:

added errorcodes files.

Location:
trunk/psLib/src
Files:
6 added
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astronomy/Makefile

    r1463 r1787  
    1414OBJS = $(addprefix makedir/,$(SRC_OBJS))
    1515
     16HEADERS = $(SRC_OBJS:.o=.h) psPhotometry.h slalib.h
     17
    1618all: $(TARGET_STATIC)
     19
     20psAstronomyErrors.h: psAstronomyErrors.dat
     21        perl ../parseErrorCodes.pl --data=$? $@
     22
    1723
    1824# Rule to make static library
     
    2531# Define PHONY target "install" which will install necessary files
    2632install: $(TARGET_STATIC)
    27         install *.h $(includedir)
     33        install $(HEADERS) $(includedir)
    2834
    2935# Define PHONY target "distclean" which will cleanup the distribution
  • trunk/psLib/src/collections/Makefile

    r1764 r1787  
    33##  Makefile:   collections
    44##
    5 ##  $Revision: 1.30 $  $Name: not supported by cvs2svn $
    6 ##  $Date: 2004-09-09 22:21:00 $
     5##  $Revision: 1.31 $  $Name: not supported by cvs2svn $
     6##  $Date: 2004-09-11 00:43:54 $
    77##
    88##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4747all: $(TARGET_STATIC)
    4848
     49psCollectionsErrors.h: psCollectionsErrors.dat
     50        perl ../parseErrorCodes.pl --data=$? $@
     51
    4952# Rule to make static library
    5053
     
    5861install: $(TARGET_STATIC)
    5962        install $(HEADERS) $(includedir)
    60 
    61 psCollectionsErrors.h: psCollectionsErrors.dat
    62         perl ../parseErrorCodes.pl --data=$? $@
    6363
    6464# Define PHONY target "distclean" which will cleanup the distribution
  • trunk/psLib/src/collections/psCollectionsErrors.h

    r1762 r1787  
    1 /** @file  psSysUtilsErrors.h
     1/** @file  psCollectionsErrors.h
    22 *
    3  *  @brief Contains the error text for the system utility functions
     3 *  @brief Contains the error text for the collections functions
    44 *
    55 *  @ingroup ErrorHandling
     
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-09-09 21:59:43 $
     9 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-09-11 00:43:54 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    1313 */
    1414
    15 #ifndef PS_SYSUTILS_ERRORS_H
    16 #define PS_SYSUTILS_ERRORS_H
     15#ifndef PS_COLLECTIONS_ERRORS_H
     16#define PS_COLLECTIONS_ERRORS_H
    1717
    1818/* N.B., lines between '//~Start' and '//~End' are automatic generated from
    1919 * the template following the '//~Start'.  The template is used to generate
    20  * the other lines by, for each error text in psSysUtilsErrors.dat, the following
     20 * the other lines by, for each error text in psCollectionsErrors.dat, the following
    2121 * substitutions are made:
    22  *     $1  The error text macro name (first word in the psSysUtilsErrors.dat lines)
    23  *     $2  The error text (rest of the line in psSysUtilsErrors.dat)
    24  *     $n  The order of the source line in psSysUtilsErrors.dat (comments excluded)
     22 *     $1  The error text macro name (first word in the psCollectionsErrors.dat lines)
     23 *     $2  The error text (rest of the line in psCollectionsErrors.dat)
     24 *     $n  The order of the source line in psCollecitonsErrors.dat (comments excluded)
    2525 *
    2626 * DO NOT EDIT THE LINES BETWEEN //~Start and //~End!  ANY CHANGES WILL BE OVERWRITTEN.
  • trunk/psLib/src/dataManip/Makefile

    r1764 r1787  
    1919         
    2020all: $(TARGET_STATIC)
     21
     22psDataManipErrors.h: psDataManipErrors.dat
     23        perl ../parseErrorCodes.pl --data=$? $@
    2124
    2225# force the creation of a psImage.i for psImage.o (to expand macros).
  • trunk/psLib/src/image/Makefile

    r1764 r1787  
    33##  Makefile:   collections
    44##
    5 ##  $Revision: 1.5 $  $Name: not supported by cvs2svn $
    6 ##  $Date: 2004-09-09 22:21:00 $
     5##  $Revision: 1.6 $  $Name: not supported by cvs2svn $
     6##  $Date: 2004-09-11 00:43:54 $
    77##
    88##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4545
    4646all: $(TARGET_STATIC)
     47
     48psImageErrors.h: psImageErrors.dat
     49        perl ../parseErrorCodes.pl --data=$? $@
    4750
    4851# Rule to make static library
  • trunk/psLib/src/sys/psErrorCodes.c

    r1748 r1787  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-09-09 02:24:18 $
     9 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-09-11 00:43:54 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/sys/psErrorCodes.h

    r1748 r1787  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-09-09 02:24:18 $
     9 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-09-11 00:43:54 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/sysUtils/psErrorCodes.c

    r1748 r1787  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-09-09 02:24:18 $
     9 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-09-11 00:43:54 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/sysUtils/psErrorCodes.h

    r1748 r1787  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-09-09 02:24:18 $
     9 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-09-11 00:43:54 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/sysUtils/psSysUtilsErrors.dat

    r1761 r1787  
    33#
    44#  Format is:
    5 #  ERROR_NAME(one word)    ERROR_TEXT
     5#  ERRORNAME(one word)    ERROR_TEXT
     6#
     7#  N.b. The ERRORNAME is exposed in the code as PS_ERR_ERRORNAME, e.g.,
     8#  if ERRORNAME=psMemory_NULL_BLOCK, then use PS_ERR_psMemory_NULL_BLOCK in
     9#  the code.
    610#
    711####################################################################
  • trunk/psLib/src/sysUtils/psSysUtilsErrors.h

    r1761 r1787  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-09-09 21:59:03 $
     9 *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-09-11 00:43:54 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
Note: See TracChangeset for help on using the changeset viewer.