2004-01-26 04:42:28 +00:00
|
|
|
#
|
|
|
|
# Makefile for GNUstep Base Library documentation.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2002 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Written by: Richard Frith-Macdonald <rfm.gnu.org>
|
|
|
|
#
|
|
|
|
# This file is part of the GNUstep Base Library.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
2005-07-15 22:51:23 +00:00
|
|
|
# modify it under the terms of the GNU General Public
|
2004-01-26 04:42:28 +00:00
|
|
|
# License as published by the Free Software Foundation; either
|
2007-09-14 11:36:11 +00:00
|
|
|
# version 3 of the License, or (at your option) any later version.
|
2004-01-26 04:42:28 +00:00
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2005-07-15 22:51:23 +00:00
|
|
|
# General Public License for more details.
|
2004-01-26 04:42:28 +00:00
|
|
|
#
|
2005-07-15 22:51:23 +00:00
|
|
|
# You should have received a copy of the GNU General Public
|
2004-01-26 04:42:28 +00:00
|
|
|
# License along with this library; if not, write to the Free
|
2006-06-14 09:12:30 +00:00
|
|
|
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
# Boston, MA 02111 USA
|
2004-01-26 04:42:28 +00:00
|
|
|
#
|
|
|
|
|
2008-12-19 12:53:30 +00:00
|
|
|
PACKAGE_NAME = gnustep-base
|
2004-01-26 04:42:28 +00:00
|
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
2004-05-28 19:44:29 +00:00
|
|
|
include ../../config.mak
|
2004-01-26 04:42:28 +00:00
|
|
|
|
2004-01-27 04:36:01 +00:00
|
|
|
DOCUMENT_NAME = General
|
2004-01-26 04:42:28 +00:00
|
|
|
|
2004-01-27 04:36:01 +00:00
|
|
|
General_DOC_INSTALL_DIR = Developer/Base
|
2004-01-26 04:42:28 +00:00
|
|
|
|
2004-01-27 04:36:01 +00:00
|
|
|
General_AGSDOC_FILES = \
|
2004-01-26 04:42:28 +00:00
|
|
|
Debugging.gsdoc \
|
|
|
|
OpenStepCompliance.gsdoc \
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Hack ... using the -DocumentationDirectory flag overrides the value
|
|
|
|
# used by the make package, and puts our output in the documentation
|
|
|
|
# directory.
|
|
|
|
#
|
2004-01-27 04:36:01 +00:00
|
|
|
#General_AGSDOC_FLAGS = -DocumentationDirectory .
|
2014-06-30 06:20:36 +00:00
|
|
|
General_AGSDOC_FLAGS = -DTDs ../../Tools
|
2004-01-26 04:42:28 +00:00
|
|
|
|
|
|
|
# Use local version of autogsdoc in case it is not installed
|
2006-06-14 09:12:30 +00:00
|
|
|
AUTOGSDOC=../../Tools/$(GNUSTEP_OBJ_DIR_NAME)/autogsdoc
|
2004-05-28 19:44:29 +00:00
|
|
|
BASE_MAKE_LOADED=yes
|
2004-01-26 04:42:28 +00:00
|
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/documentation.make
|
|
|
|
|
|
|
|
#
|
|
|
|
# Ensure that our destination subdirectory exists in the Documentation
|
|
|
|
# directory, and temporarily copy the base source file here for autogsdoc
|
|
|
|
# to use.
|
|
|
|
#
|
|
|
|
#before-all::
|
|
|
|
|
|
|
|
#
|
|
|
|
# Clean up temporary files used while generating documentation.
|
|
|
|
#
|
|
|
|
after-clean::
|
2004-01-27 04:36:01 +00:00
|
|
|
if [ -d General ]; then \
|
|
|
|
$(RM) General/stamp; \
|
|
|
|
$(RM) General/dependencies; \
|
|
|
|
rmdir General; \
|
2004-01-26 04:42:28 +00:00
|
|
|
fi
|
|
|
|
|