[Tinyos-2-commits] CVS: tinyos-2.x/support/make docs.extra, 1.4, 1.5 appdoc.extra, 1.1, 1.2
David Gay
idgay at users.sourceforge.net
Fri May 2 13:49:46 PDT 2008
Update of /cvsroot/tinyos/tinyos-2.x/support/make
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv32217/support/make
Modified Files:
docs.extra appdoc.extra
Log Message:
-quiet option for nesdoc
Index: docs.extra
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/support/make/docs.extra,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** docs.extra 12 Dec 2006 18:22:55 -0000 1.4
--- docs.extra 2 May 2008 20:49:44 -0000 1.5
***************
*** 24,27 ****
--- 24,31 ----
endif
+ ifeq ($(filter quiet,$(DOCS)),quiet)
+ QUIET = -quiet
+ endif
+
BUILD_DEPS = docs_
***************
*** 29,35 ****
@echo " Making documentation for $(COMPONENT) on $(PLATFORM)"
# first generate the xml files
! nesdoc -o $(DOCDIR) $(NESDOC_FLAGS) $(PFLAGS) $(CFLAGS) $(COMPONENT).nc
ifneq ($(filter nohtml,$(DOCS)),nohtml)
# generate html from the xml files
! nesdoc -o $(DOCDIR) -html -target=$(PLATFORM) $(DOCS)
endif
--- 33,39 ----
@echo " Making documentation for $(COMPONENT) on $(PLATFORM)"
# first generate the xml files
! nesdoc -o $(DOCDIR) $(NESDOC_FLAGS) $(PFLAGS) $(CFLAGS) $(QUIET) $(COMPONENT).nc
ifneq ($(filter nohtml,$(DOCS)),nohtml)
# generate html from the xml files
! nesdoc -o $(DOCDIR) -html $(QUIET) -target=$(PLATFORM)
endif
Index: appdoc.extra
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/support/make/appdoc.extra,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** appdoc.extra 4 Jun 2007 20:57:44 -0000 1.1
--- appdoc.extra 2 May 2008 20:49:44 -0000 1.2
***************
*** 10,17 ****
BUILD_DEPS = appdoc_
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
# generate html from the xml files
! nesdoc -o build -html -target=$(PLATFORM)
--- 10,21 ----
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 $(QUIET)
# generate html from the xml files
! nesdoc -o build -html -target=$(PLATFORM) $(QUIET)
More information about the Tinyos-2-commits
mailing list