X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=support%2Fmake%2Fappdoc.extra;h=0e7500c1fc07b3a84692d12af4799c492cef0405;hb=fd4eb0b1c65fa7582078af7f0c4950be59c72f6d;hp=7d29e818074ee9aee212b7d75808842072f715ea;hpb=1b784120cf5b70690421760f01e41a3917297c4e;p=tinyos-2.x.git diff --git a/support/make/appdoc.extra b/support/make/appdoc.extra index 7d29e818..0e7500c1 100644 --- a/support/make/appdoc.extra +++ b/support/make/appdoc.extra @@ -9,9 +9,13 @@ endif BUILD_DEPS = appdoc_ +ifeq ($(filter quiet,$(APPDOC)),quiet) +QUIET = -quiet +endif + appdoc_: FORCE @echo " Making application documentation for $(COMPONENT) on $(PLATFORM)" # first generate the xml files - nesdoc -o build $(NESDOC_FLAGS) $(PFLAGS) $(CFLAGS) $(COMPONENT).nc -app + nesdoc -o build $(NESDOC_FLAGS) $(PFLAGS) $(CFLAGS) $(COMPONENT).nc -app $(QUIET) # generate html from the xml files - nesdoc -o build -html -target=$(PLATFORM) + nesdoc -o build -html -target=$(PLATFORM) $(QUIET)