Update of /cvsroot/linux-decnet/dnprogs/libvaxdata/tru64
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv3392/libvaxdata/tru64
Modified Files:
makefile.cc makefile.gcc makefile.osf1
Log Message:
New version of libvaxdata:
The new version corrects the conversions for doubles (D, G) and double doubles (H); floats (F) were fine. For reference, the USGS web page for libvaxdata is http://pubs.usgs.gov/of/2005/1424/.
Index: makefile.cc
===================================================================
RCS file: /cvsroot/linux-decnet/dnprogs/libvaxdata/tru64/makefile.cc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** makefile.cc 25 Oct 2005 07:32:13 -0000 1.1
--- makefile.cc 19 Aug 2010 08:39:00 -0000 1.2
***************
*** 3,7 ****
# data for Tru64 UNIX using DEC/Compaq/HP C (cc).
#
! # Shell command syntax: make -f makefile.cc [ all | libvaxdata | clean ]
#
# -fast (optimize for speed) -std1 (strict ANSI)
--- 3,9 ----
# data for Tru64 UNIX using DEC/Compaq/HP C (cc).
#
! # Shell command syntax:
! #
! # make -f makefile.cc [ all | libvaxdata | test | clean ]
#
# -fast (optimize for speed) -std1 (strict ANSI)
Index: makefile.gcc
===================================================================
RCS file: /cvsroot/linux-decnet/dnprogs/libvaxdata/tru64/makefile.gcc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** makefile.gcc 25 Oct 2005 07:32:13 -0000 1.1
--- makefile.gcc 19 Aug 2010 08:39:00 -0000 1.2
***************
*** 3,7 ****
# data for Tru64 UNIX using GNU C (gcc).
#
! # Shell command syntax: make -f makefile.gcc [ all | libvaxdata | clean ]
#
# -O3 (highest level of optimization) -ansi (strict ANSI)
--- 3,9 ----
# data for Tru64 UNIX using GNU C (gcc).
#
! # Shell command syntax:
! #
! # make -f makefile.gcc [ all | libvaxdata | test | clean ]
#
# -O3 (highest level of optimization) -ansi (strict ANSI)
Index: makefile.osf1
===================================================================
RCS file: /cvsroot/linux-decnet/dnprogs/libvaxdata/tru64/makefile.osf1,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** makefile.osf1 25 Oct 2005 07:32:13 -0000 1.1
--- makefile.osf1 19 Aug 2010 08:39:00 -0000 1.2
***************
*** 7,11 ****
# [ CC="c_compiler" ] \ #
# [ CFLAGS="c_compiler_flags" ] \ #
! # [ all | libvaxdata | clean ] #
# #
# #
--- 7,11 ----
# [ CC="c_compiler" ] \ #
# [ CFLAGS="c_compiler_flags" ] \ #
! # [ all | libvaxdata | test | clean ] #
# #
# #
***************
*** 16,22 ****
# ba...@us... #
# #
! # Citation: Baker, Lawrence M., 2005, libvaxdata: VAX Data Format Conver- #
! # sion Routines, US Geological Survey, Open-File Report no. #
! # 2005-XXX, nn p. #
# #
# #
--- 16,22 ----
# ba...@us... #
# #
! # Citation: Baker, L.M., 2005, libvaxdata: VAX Data Format Conversion #
! # Routines: U.S. Geological Survey Open-File Report 2005-1424, #
! # v1.1 (http://pubs.usgs.gov/of/2005/1424/). #
# #
# #
***************
*** 33,37 ****
# #
# 2-Sep-2005 L. M. Baker Original version (from make.libvfbb). #
! # 12-Oct-2005 L. M. Baker Use custom compile rule for is_little_endian. #
# #
################################################################################
--- 33,38 ----
# #
# 2-Sep-2005 L. M. Baker Original version (from make.libvfbb). #
! # 6-Oct-2005 L. M. Baker Use custom compile rule for is_little_endian. #
! # 30-Jan-2010 L. M. Baker Add test program. #
# #
################################################################################
***************
*** 64,68 ****
VPATH = ../../src
! all: $(LIB_NAME)
$(LIB_NAME):
--- 65,69 ----
VPATH = ../../src
! all: $(LIB_NAME) test
$(LIB_NAME):
***************
*** 84,87 ****
$(CC) -c -o $@ $?
clean:
! cd $(ARCH) ; $(RM) -f $(LIB_NAME).a $(OBJS)
--- 85,91 ----
$(CC) -c -o $@ $?
+ test:
+ cd $(ARCH) ; $(CC) -o test ../../src/test.c -L. -lvaxdata
+
clean:
! cd $(ARCH) ; $(RM) -f $(LIB_NAME).a test test.o $(OBJS)
|