summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-06-24 22:36:06 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-06-24 22:36:06 (GMT)
commit3b2f685f27f19d3c618f2d0b30f16af43a873850 (patch)
tree737dbb2487ed11ae24d596fa41ab9588f04a622a
parent595b6ff7a6b2ae4da962fb30b3d87283a604f459 (diff)
downloadhdf5-3b2f685f27f19d3c618f2d0b30f16af43a873850.zip
hdf5-3b2f685f27f19d3c618f2d0b30f16af43a873850.tar.gz
hdf5-3b2f685f27f19d3c618f2d0b30f16af43a873850.tar.bz2
[svn-r5693] Purpose:
Feature Fix Description: Made the h5cc build command visible. Also updated the copyright statement... Solution: Removed the "@" from the front of the command... Platforms tested: Linux
-rw-r--r--examples/Makefile.in38
1 files changed, 23 insertions, 15 deletions
diff --git a/examples/Makefile.in b/examples/Makefile.in
index 40206ad..d77785f 100644
--- a/examples/Makefile.in
+++ b/examples/Makefile.in
@@ -1,8 +1,16 @@
## HDF5 Library Examples Makefile(.in)
##
-## Copyright (C) 1997, 1998, 1999, 2000, 2001
-## National Center for Supercomputing Applications
-## All rights reserved.
+## Copyright by the Board of Trustees of the University of Illinois.
+## All rights reserved.
+##
+## This file is part of HDF5. The full HDF5 copyright notice, including
+## terms governing use, modification, and redistribution, is contained in
+## the files COPYING and Copyright.html. COPYING can be found at the root
+## of the source code distribution tree; Copyright.html can be found at the
+## root level of an installed copy of the electronic HDF5 document set and
+## is linked from the top-level documents page. It can also be found at
+## http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have
+## access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu.
##
top_srcdir=@top_srcdir@
top_builddir=..
@@ -40,39 +48,39 @@ EXAMPLE_PROGS=$(TEST_SRC)
## How to build the programs... they all depend on the hdf5 library
$(TEST_PROGS) $(TEST_PROGS_PARA): $(LIBHDF5)
h5_chunk_read: h5_chunk_read.c
- @$(CC) $(CPPFLAGS) -o $@ h5_chunk_read.c
+ $(CC) $(CPPFLAGS) -o $@ h5_chunk_read.c
h5_compound: h5_compound.c
- @$(CC) $(CPPFLAGS) -o $@ h5_compound.c
+ $(CC) $(CPPFLAGS) -o $@ h5_compound.c
h5_extend_write: h5_extend_write.c
- @$(CC) $(CPPFLAGS) -o $@ h5_extend_write.c
+ $(CC) $(CPPFLAGS) -o $@ h5_extend_write.c
h5_group: h5_group.c
- @$(CC) $(CPPFLAGS) -o $@ h5_group.c
+ $(CC) $(CPPFLAGS) -o $@ h5_group.c
h5_write: h5_write.c
- @$(CC) $(CPPFLAGS) -o $@ h5_write.c
+ $(CC) $(CPPFLAGS) -o $@ h5_write.c
h5_read: h5_read.c
- @$(CC) $(CPPFLAGS) -o $@ h5_read.c
+ $(CC) $(CPPFLAGS) -o $@ h5_read.c
h5_select: h5_select.c
- @$(CC) $(CPPFLAGS) -o $@ h5_select.c
+ $(CC) $(CPPFLAGS) -o $@ h5_select.c
h5_attribute: h5_attribute.c
- @$(CC) $(CPPFLAGS) -o $@ h5_attribute.c
+ $(CC) $(CPPFLAGS) -o $@ h5_attribute.c
h5_mount: h5_mount.c
- @$(CC) $(CPPFLAGS) -o $@ h5_mount.c
+ $(CC) $(CPPFLAGS) -o $@ h5_mount.c
h5_reference: h5_reference.c
- @$(CC) $(CPPFLAGS) -o $@ h5_reference.c
+ $(CC) $(CPPFLAGS) -o $@ h5_reference.c
h5_drivers: h5_drivers.c
- @$(CC) $(CPPFLAGS) -o $@ h5_drivers.c
+ $(CC) $(CPPFLAGS) -o $@ h5_drivers.c
ph5example: ph5example.c
- @$(CC) $(CPPFLAGS) -o $@ $@.c
+ $(CC) $(CPPFLAGS) -o $@ $@.c
@CONCLUDE@