Changeset 1787
- Timestamp:
- Sep 10, 2004, 2:43:54 PM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 6 added
- 11 edited
-
astronomy/Makefile (modified) (2 diffs)
-
astronomy/psAstronomyErrors.dat (added)
-
astronomy/psAstronomyErrors.h (added)
-
collections/Makefile (modified) (3 diffs)
-
collections/psCollectionsErrors.h (modified) (2 diffs)
-
dataManip/Makefile (modified) (1 diff)
-
dataManip/psDataManipErrors.dat (added)
-
dataManip/psDataManipErrors.h (added)
-
image/Makefile (modified) (2 diffs)
-
image/psImageErrors.dat (added)
-
image/psImageErrors.h (added)
-
sys/psErrorCodes.c (modified) (1 diff)
-
sys/psErrorCodes.h (modified) (1 diff)
-
sysUtils/psErrorCodes.c (modified) (1 diff)
-
sysUtils/psErrorCodes.h (modified) (1 diff)
-
sysUtils/psSysUtilsErrors.dat (modified) (1 diff)
-
sysUtils/psSysUtilsErrors.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astronomy/Makefile
r1463 r1787 14 14 OBJS = $(addprefix makedir/,$(SRC_OBJS)) 15 15 16 HEADERS = $(SRC_OBJS:.o=.h) psPhotometry.h slalib.h 17 16 18 all: $(TARGET_STATIC) 19 20 psAstronomyErrors.h: psAstronomyErrors.dat 21 perl ../parseErrorCodes.pl --data=$? $@ 22 17 23 18 24 # Rule to make static library … … 25 31 # Define PHONY target "install" which will install necessary files 26 32 install: $(TARGET_STATIC) 27 install *.h$(includedir)33 install $(HEADERS) $(includedir) 28 34 29 35 # Define PHONY target "distclean" which will cleanup the distribution -
trunk/psLib/src/collections/Makefile
r1764 r1787 3 3 ## Makefile: collections 4 4 ## 5 ## $Revision: 1.3 0$ $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 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 47 47 all: $(TARGET_STATIC) 48 48 49 psCollectionsErrors.h: psCollectionsErrors.dat 50 perl ../parseErrorCodes.pl --data=$? $@ 51 49 52 # Rule to make static library 50 53 … … 58 61 install: $(TARGET_STATIC) 59 62 install $(HEADERS) $(includedir) 60 61 psCollectionsErrors.h: psCollectionsErrors.dat62 perl ../parseErrorCodes.pl --data=$? $@63 63 64 64 # Define PHONY target "distclean" which will cleanup the distribution -
trunk/psLib/src/collections/psCollectionsErrors.h
r1762 r1787 1 /** @file ps SysUtilsErrors.h1 /** @file psCollectionsErrors.h 2 2 * 3 * @brief Contains the error text for the system utilityfunctions3 * @brief Contains the error text for the collections functions 4 4 * 5 5 * @ingroup ErrorHandling … … 7 7 * @author Robert DeSonia, MHPCC 8 8 * 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 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 13 13 */ 14 14 15 #ifndef PS_ SYSUTILS_ERRORS_H16 #define PS_ SYSUTILS_ERRORS_H15 #ifndef PS_COLLECTIONS_ERRORS_H 16 #define PS_COLLECTIONS_ERRORS_H 17 17 18 18 /* N.B., lines between '//~Start' and '//~End' are automatic generated from 19 19 * the template following the '//~Start'. The template is used to generate 20 * the other lines by, for each error text in ps SysUtilsErrors.dat, the following20 * the other lines by, for each error text in psCollectionsErrors.dat, the following 21 21 * substitutions are made: 22 * $1 The error text macro name (first word in the ps SysUtilsErrors.dat lines)23 * $2 The error text (rest of the line in ps SysUtilsErrors.dat)24 * $n The order of the source line in ps SysUtilsErrors.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) 25 25 * 26 26 * DO NOT EDIT THE LINES BETWEEN //~Start and //~End! ANY CHANGES WILL BE OVERWRITTEN. -
trunk/psLib/src/dataManip/Makefile
r1764 r1787 19 19 20 20 all: $(TARGET_STATIC) 21 22 psDataManipErrors.h: psDataManipErrors.dat 23 perl ../parseErrorCodes.pl --data=$? $@ 21 24 22 25 # force the creation of a psImage.i for psImage.o (to expand macros). -
trunk/psLib/src/image/Makefile
r1764 r1787 3 3 ## Makefile: collections 4 4 ## 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 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 45 45 46 46 all: $(TARGET_STATIC) 47 48 psImageErrors.h: psImageErrors.dat 49 perl ../parseErrorCodes.pl --data=$? $@ 47 50 48 51 # Rule to make static library -
trunk/psLib/src/sys/psErrorCodes.c
r1748 r1787 7 7 * @author Robert DeSonia, MHPCC 8 8 * 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 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/sys/psErrorCodes.h
r1748 r1787 7 7 * @author Robert DeSonia, MHPCC 8 8 * 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 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/sysUtils/psErrorCodes.c
r1748 r1787 7 7 * @author Robert DeSonia, MHPCC 8 8 * 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 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/sysUtils/psErrorCodes.h
r1748 r1787 7 7 * @author Robert DeSonia, MHPCC 8 8 * 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 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/sysUtils/psSysUtilsErrors.dat
r1761 r1787 3 3 # 4 4 # 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. 6 10 # 7 11 #################################################################### -
trunk/psLib/src/sysUtils/psSysUtilsErrors.h
r1761 r1787 7 7 * @author Robert DeSonia, MHPCC 8 8 * 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 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii
Note:
See TracChangeset
for help on using the changeset viewer.
