CVS: examples/video README.txt,1.1,1.2 makefile,1.1,1.2
Chris Liechti <[email protected]>
| Newsgroups | gmane.comp.hardware.texas-instruments.msp430.gcc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/mspgcc/examples/video
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28564/examples/video
Modified Files:
README.txt makefile
Log Message:
- update readmes
- build the HTML docs using docutils
Index: README.txt
===================================================================
RCS file: /cvsroot/mspgcc/examples/video/README.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -d -r1.1 -r1.2
--- README.txt 26 Dec 2005 20:37:03 -0000 1.1
+++ README.txt 5 Jan 2006 01:35:09 -0000 1.2
@@ -10,9 +10,10 @@
This examples are for the PAL television system.
- The pong example can also be found as application note from TI. This
+ The pong example can also be found as application note from TI. That
implementation is for NTSC.
+There is a pong_ and a tetris_ clone
Disclaimer
----------
@@ -22,3 +23,5 @@
chris
.. _license.txt: ../license.html
+.. _pong: TVPong/README.html
+.. _tetris: TVTetris/README.html
Index: makefile
===================================================================
RCS file: /cvsroot/mspgcc/examples/video/makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -d -r1.1 -r1.2
--- makefile 26 Dec 2005 20:37:03 -0000 1.1
+++ makefile 5 Jan 2006 01:35:09 -0000 1.2
@@ -1,4 +1,15 @@
-.PHONY: clean
-clean:
- cd TVPong; make clean
- cd TVTetris; make clean
\ No newline at end of file
+PROJECTS = TVPong TVTetris
+
+.PHONY: clean clean-doc
+clean: clean-doc
+ for d in $(PROJECTS); do \
+ cd $$d; make clean; \
+ done
+
+clean-doc:
+ for d in $(PROJECTS); do if [ -f $$d/README.txt ]; then rm -f $$d/README.html; fi; done
+
+doc:
+ for d in $(PROJECTS); do \
+ if [ -f $$d/README.txt ]; then $(RST2HTML) $(HTMLOPT) $$d/README.txt $$d/README.html; fi;\
+ done
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click