Update README with current code sizes.
authorKevin Rosenberg <kevin@rosenberg.net>
Sun, 16 Mar 2008 16:15:38 +0000 (10:15 -0600)
committerKevin Rosenberg <kevin@rosenberg.net>
Sun, 16 Mar 2008 16:15:38 +0000 (10:15 -0600)
Makefile
README
icc_c/Makefile

index 7dd0c843ccde5333c1bb6c6ac467e14ac2902394..688d777152fb66c000d46380bbdaa0ec2a604d35 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -13,13 +13,13 @@ $(tester).exe:
 \r
 .PHONY: build\r
 build: tester-build\r
-       (cd gcc_c; make; make clean)\r
-       (cd gcc_cpp; make; make clean)\r
-       (cd gcc_cpp_obj; make; make clean)\r
-       (cd iar_c; make; make clean)\r
-       (cd iar_cpp; make; make clean)\r
-       (cd iar_cpp_obj; make; make clean)\r
-       (cd icc_c; make; make clean)\r
+       $(MAKE) -C gcc_c\r
+       $(MAKE) -C gcc_cpp\r
+       $(MAKE) -C gcc_cpp_obj\r
+       $(MAKE) -C iar_c\r
+       $(MAKE) -C iar_cpp\r
+       $(MAKE) -C iar_cpp_obj\r
+       $(MAKE) -C icc_c\r
 \r
 dist: tester-build  build\r
        @chmod -x *.c *.h *.cpp README ChangeLog LICENSE\r
diff --git a/README b/README
index 87d13467c8e724626d48ea6d94086c2ff5a74002..1c15365d1b6e1125b599a8dcbf60a0e029aedab2 100644 (file)
--- a/README
+++ b/README
@@ -1,5 +1,6 @@
 AVR SERIAL_LCD C/C++ PROJECT\r
 Kevin M. Rosenberg <kevin@rosenberg.net>\r
+AVRFreaks.net member kmr\r
 =====================================================================\r
 \r
 The home for this project is http://www.avrcode/serial_lcd/\r
@@ -9,7 +10,7 @@ Project created by Carl W. Livingston. I've rewritten the original
 firmware to add a number of features, add compatibility for IAR and\r
 GCC, and well as create two different C++ version.\r
 \r
-Tthis project is also used to demonstrate how C code can be turned\r
+This project is also used to demonstrate how C code can be turned\r
 into C++ classes and to view the resulting differences in assembly\r
 output.\r
 \r
@@ -42,13 +43,13 @@ Code/Data Sizes (for 20080316 release)
 \r
 Compiler    Code  Data  Notes\r
 ---------   ----  ----  -----\r
-AVR-GCC C    720    48  -Os\r
+AVR-GCC C    718    48  -Os\r
 AVR-GCC C++  806    50  -Os\r
 AVR-GCC Obj 1574    72  -Os\r
-IAR C        648    48  Size optimization high (+ 64 bytes stack)\r
-IAR C++      746    49  Size optimization high (+ 64 bytes stack)\r
-IAR Obj     1130    65  Size optimization high (+ 63 bytes stack)\r
-ICC7 C       834    48  Full optimizations\r
+IAR C        622    48  Size optimization high (+ 64 bytes stack)\r
+IAR C++      762    49  Size optimization high (+ 64 bytes stack)\r
+IAR Obj     1112    65  Size optimization high (+ 63 bytes stack)\r
+ICC7 C       818    48  Full optimizations\r
 \r
-Please consider forwarding suggestions, improvements, or bug fixes to\r
-me.\r
+I would appreciate submissions of suggestions, improvements, or bug\r
+fixes.\r
index dd575abe80e11d8fb5bc0f152651ee1700271ced..05bb2e11d7b31f9adf247a89c1d61dd7d4d3744d 100644 (file)
@@ -42,4 +42,3 @@ distclean: clean
 clean:\r
        @rm -f $(OBJECTS) $(PROJECT).dbg $(PROJECT).cof $(PROJECT).s \\r
        $(PROJECT).cof $(PROJECT).lis\r
-\r