blob: fd41d84c894558e99d57a10486318cc918aca7fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# HDF5 Library Makefile(.in)
#
# 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=../..
srcdir=@srcdir@
VPATH=.:@srcdir@
@COMMENCE@
# Subdirectories in build-order (not including `examples')
SUBDIRS=ADGuide Graphics Intro PSandPDF TechNotes Tutor \
cpplus ed_libs ed_styles fortran
DOCDIR=$(docdir)/hdf5
# Public doc files (to be installed)...
PUB_DOCS=ADGuide.html Attributes.html Big.html Caching.html Chunk_f1.gif \
Chunk_f2.gif Chunk_f3.gif Chunk_f4.gif Chunk_f5.gif Chunk_f6.gif \
Chunking.html Coding.html Copyright.html Datasets.html \
Dataspaces.html Datatypes.html DatatypesEnum.html Debugging.html \
EnumMap.gif Environment.html Errors.html FF-IH_FileGroup.gif \
FF-IH_FileObject.gif Files.html Filters.html Glossary.html \
Groups.html H5.api_map.html H5.format.html H5.intro.html \
H5.sample_code.html H5.user.PrintGen.html H5.user.PrintTpg.html \
H5.user.html IH_map1.gif IH_map2.gif IH_map3.gif IH_map4.gif \
IH_mapFoot.gif IH_mapHead.gif IOPipe.html MountingFiles.html \
NCSAfooterlogo.gif Performance.html PredefDTypes.html \
Properties.html RM_H5.html RM_H5A.html RM_H5D.html RM_H5E.html \
RM_H5F.html RM_H5Front.html RM_H5G.html RM_H5I.html RM_H5P.html \
RM_H5R.html RM_H5S.html RM_H5T.html RM_H5Z.html References.html \
TechNotes.html Tools.html Version.html chunk1.gif compat.html \
dataset_p1.gif ddl.html extern1.gif extern2.gif group_p1.gif \
group_p2.gif group_p3.gif h5s.examples hdf2.jpg ph5design.html \
ph5example.c ph5implement.txt pipe1.gif pipe2.gif pipe3.gif \
pipe4.gif pipe5.gif index.html version.gif
# Other doc files (not to be installed)...
PRIVATE_DOCS=Chunk_f1.obj Chunk_f2.obj Chunk_f6.obj CodeReview.html \
ExternalFiles.html Lib_Maint.html MemoryManagement.html \
ObjectHeader.txt chunk1.obj dataset_p1.obj extern1.obj \
extern2.obj group_p1.obj group_p2.obj group_p3.obj heap.txt \
move.html pipe1.obj pipe2.obj pipe3.obj pipe4.obj \
pipe5.obj review1.html review1a.html storage.html symtab \
version.obj
@CONCLUDE@
|