From: Erik M. <er...@us...> - 2001-09-18 19:55:31
|
Update of /cvsroot/blob/blob/include In directory usw-pr-cvs1:/tmp/cvs-serv15081/include Modified Files: Makefile.am Removed Files: clock.h Log Message: This patch really shows the elegancy of the new command line system: clock.c is conditionally compiled and it doesn't need any #ifdef in the rest of the code. The changes: - make clock.c compile conditionally - get rid of clock.h, it's no longer needed - cleanup the codestyle in clock.c - large cleanup in clock.c getting rid of MyIsXDigit() - remove Johan from the startup messages, his code is now conditionally Index: Makefile.am =================================================================== RCS file: /cvsroot/blob/blob/include/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- Makefile.am 2001/09/15 20:03:32 1.3 +++ Makefile.am 2001/09/18 19:55:29 1.4 @@ -12,7 +12,6 @@ noinst_HEADERS = \ - clock.h \ command.h \ flash.h \ led.h \ --- clock.h DELETED --- |