mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
improved comments
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11756 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f545415fc4
commit
dbcf7b34d4
1 changed files with 6 additions and 2 deletions
|
@ -182,7 +182,7 @@ $(GSDOC_OBJECT_FILES): $(GSDOC_FILES)
|
|||
endif # GSDOC_FILES
|
||||
|
||||
#
|
||||
# processing of agsdoc files
|
||||
# Processing of agsdoc files
|
||||
#
|
||||
ifneq ($(AGSDOC_FILES),)
|
||||
|
||||
|
@ -190,11 +190,15 @@ INTERNAL_AGSDOCFLAGS = $(AGSDOC_FLAGS)
|
|||
INTERNAL_AGSDOCFLAGS += -Project $(INTERNAL_doc_NAME)
|
||||
INTERNAL_AGSDOCFLAGS += -DocumentationDirectory $(INTERNAL_doc_NAME)
|
||||
|
||||
# The autogsdoc program has built-in dependency handling, so we can
|
||||
# simply run it and it will work out what needs to be rebuilt.
|
||||
internal-doc-all:: before-$(TARGET)-all \
|
||||
generate-autogsdoc \
|
||||
after-$(TARGET)-all
|
||||
|
||||
# If autogsdoc is not present, simply continue
|
||||
# If autogsdoc is not present, the '-' at the start of the next command
|
||||
# lets the makefile system simply continue without generating any
|
||||
# documentation from headers etc.
|
||||
generate-autogsdoc:
|
||||
-$(MKDIRS) $(INTERNAL_doc_NAME); \
|
||||
autogsdoc $(INTERNAL_AGSDOCFLAGS) $(AGSDOC_FILES)
|
||||
|
|
Loading…
Reference in a new issue