mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-04-12 18:10:24 +08:00
fixed make clean in docs
This commit is contained in:
parent
7e2ffd0071
commit
8996b36c66
@ -84,6 +84,6 @@ install-fortran.md all-error-codes.md credits.md auth.md
|
||||
obsolete/fan_utils.html bestpractices.md filters.md indexing.md
|
||||
inmemory.md DAP4.dox OPeNDAP.dox attribute_conventions.md FAQ.md
|
||||
file_format_specifications.md known_problems.md
|
||||
COPYRIGHT.dox)
|
||||
COPYRIGHT.dox user_defined_formats.md)
|
||||
|
||||
ADD_EXTRA_DIST("${CUR_EXTRA_DIST}")
|
||||
|
@ -757,6 +757,7 @@ INPUT = \
|
||||
@abs_top_srcdir@/docs/DAP4.dox \
|
||||
@abs_top_srcdir@/docs/attribute_conventions.md \
|
||||
@abs_top_srcdir@/docs/file_format_specifications.md \
|
||||
@abs_top_srcdir@/docs/user_defined_formats.md \
|
||||
@abs_top_srcdir@/docs/auth.md \
|
||||
@abs_top_srcdir@/docs/filters.md \
|
||||
@abs_top_srcdir@/docs/inmemory.md \
|
||||
@ -793,16 +794,16 @@ INPUT = \
|
||||
@abs_top_srcdir@/libdispatch/derror.c \
|
||||
@abs_top_srcdir@/libdispatch/dv2i.c \
|
||||
@abs_top_srcdir@/libdispatch/dcopy.c \
|
||||
@abs_top_srcdir@/libsrc4/nc4file.c \
|
||||
@abs_top_srcdir@/libhdf5/hdf5file.c \
|
||||
@abs_top_srcdir@/libsrc4/nc4var.c \
|
||||
@abs_top_srcdir@/libsrc4/nc4hdf.c \
|
||||
@abs_top_srcdir@/libhdf5/nc4hdf.c \
|
||||
@abs_top_srcdir@/libsrc4/nc4internal.c \
|
||||
@abs_top_srcdir@/libsrc4/nc4type.c \
|
||||
@abs_top_srcdir@/libsrc4/nc4grp.c \
|
||||
@abs_top_srcdir@/libsrc4/ncfunc.c \
|
||||
@abs_top_srcdir@/libsrc4/nc4dim.c \
|
||||
@abs_top_srcdir@/libsrc4/nc4attr.c \
|
||||
@abs_top_srcdir@/libsrc4/nc4info.c \
|
||||
@abs_top_srcdir@/libhdf5/nc4info.c \
|
||||
@abs_top_srcdir@/libsrc4/nc4dispatch.c \
|
||||
@abs_top_srcdir@/examples/C/simple_xy_wr.c \
|
||||
@abs_top_srcdir@/examples/C/simple_xy_rd.c \
|
||||
|
@ -2,23 +2,22 @@
|
||||
# Copyright 2005-2011, see the COPYRIGHT file for more information.
|
||||
# This file builds the netcdf documentation.
|
||||
|
||||
|
||||
# These files will be included with the dist.
|
||||
EXTRA_DIST = netcdf.m4 DoxygenLayout.xml Doxyfile.in footer.html \
|
||||
mainpage.dox tutorial.dox guide.dox types.dox cdl.dox \
|
||||
architecture.dox internal.dox windows-binaries.md \
|
||||
building-with-cmake.md CMakeLists.txt groups.dox install.md notes.md \
|
||||
install-fortran.md all-error-codes.md credits.md auth.md \
|
||||
obsolete/fan_utils.html bestpractices.md filters.md indexing.dox \
|
||||
inmemory.md DAP4.dox OPeNDAP.dox attribute_conventions.md FAQ.md \
|
||||
file_format_specifications.md known_problems.md \
|
||||
COPYRIGHT.dox
|
||||
obsolete/fan_utils.html bestpractices.md filters.md indexing.dox \
|
||||
inmemory.md DAP4.dox OPeNDAP.dox attribute_conventions.md FAQ.md \
|
||||
file_format_specifications.md known_problems.md COPYRIGHT.dox \
|
||||
user_defined_formats.md
|
||||
|
||||
# Turn off parallel builds in this directory.
|
||||
.NOTPARALLEL:
|
||||
|
||||
# To build documentation you must have M4 in their path.
|
||||
M4=m4
|
||||
M4 = m4
|
||||
|
||||
SUBDIRS = images
|
||||
|
||||
@ -43,6 +42,7 @@ clean-local:
|
||||
rm -rf $(top_builddir)/docs/man
|
||||
rm -rf $(top_builddir)/docs/html
|
||||
rm -rf $(top_builddir)/docs/latex
|
||||
rm -rf $(top_builddir)/docs/latex_main
|
||||
endif
|
||||
|
||||
# Timestamp to prevent rebuilds.
|
||||
@ -54,7 +54,7 @@ doxyfile.stamp:
|
||||
$(DOXYGEN) Doxyfile \
|
||||
cp auth.md obsolete/fan_utils.html html
|
||||
|
||||
CLEANFILES = doxyfile.stamp html latex man
|
||||
CLEANFILES = doxyfile.stamp
|
||||
|
||||
# This builds the docs from source, if necessary, and tars up
|
||||
# everything needed for the website. Run this and copy the resulting
|
||||
|
@ -2,10 +2,11 @@
|
||||
* Research. See COPYRIGHT file for copying and redistribution
|
||||
* conditions. */
|
||||
/**
|
||||
* @file @internal This file is part of netcdf-4, the extended netCDF
|
||||
* data model/file format. This uses libhdf5 for file I/O. The resulting
|
||||
* file may or may not be readable by the hdf5 utilities and the data model
|
||||
* may or may not be expressable by the hdf5 utilities.
|
||||
* @file
|
||||
* @internal This file is part of netcdf-4, the extended netCDF data
|
||||
* model/file format. This uses libhdf5 for file I/O. The resulting
|
||||
* file may or may not be readable by the hdf5 utilities and the data
|
||||
* model may or may not be expressable by the hdf5 utilities.
|
||||
*
|
||||
* This file handles the nc4 attribute functions.
|
||||
*
|
||||
|
@ -2,9 +2,10 @@
|
||||
* Research. See COPYRIGHT file for copying and redistribution
|
||||
* conditions. */
|
||||
/**
|
||||
* @file @internal This file is part of netcdf-4, a netCDF-like
|
||||
* interface for HDF5, or a HDF5 backend for netCDF, depending on your
|
||||
* point of view.
|
||||
* @file
|
||||
* @internal This file is part of netcdf-4, a netCDF-like interface
|
||||
* for HDF5, or a HDF5 backend for netCDF, depending on your point of
|
||||
* view.
|
||||
*
|
||||
* This file handles groups.
|
||||
*
|
||||
|
@ -1,9 +1,10 @@
|
||||
/* Copyright 2005, University Corporation for Atmospheric Research. See
|
||||
* the COPYRIGHT file for copying and redistribution conditions. */
|
||||
/**
|
||||
* @file @internal This file is part of netcdf-4, a netCDF-like
|
||||
* interface for HDF5, or a HDF5 backend for netCDF, depending on your
|
||||
* point of view.
|
||||
* @file
|
||||
* @internal This file is part of netcdf-4, a netCDF-like interface
|
||||
* for HDF5, or a HDF5 backend for netCDF, depending on your point of
|
||||
* view.
|
||||
*
|
||||
* This file handles the nc4 user-defined type functions
|
||||
* (i.e. compound and opaque types).
|
||||
|
Loading…
x
Reference in New Issue
Block a user