Commit 2df48dd56ca8c9f93e9c20dc98492408d0b34f5b
authorMichel Pollet <buserror@gmail.com>
Tue, 31 Aug 2010 10:30:49 +0000 (11:30 +0100)
committerMichel Pollet <buserror@gmail.com>
Tue, 31 Aug 2010 10:30:49 +0000 (11:30 +0100)
Makefile now uses $(CC) so it works with clang static analyzer.

Signed-off-by: Michel Pollet <buserror@gmail.com>
2 files changed:
Makefile.common
simavr/sim/sim_regbit.h

index 182c4320328e8924d0536354b0d1c9ebef6d221b..91000cb7e14295a5bdda11c36a4fa066e2acaac4 100644 (file)
@@ -71,7 +71,7 @@ endif
 OBJ = obj
 
 ${OBJ}/%.o: %.c
-       @gcc $(CFLAGS) -MD \
+       @$(CC) $(CFLAGS) -MD \
                $<  -c -o $@
        @echo CC $<
 
index 02d840a864a18045e04502c871debf60e296920e..1f74197d6d6f05044836e9908ce9c10daab0a14b 100644 (file)
@@ -41,7 +41,7 @@ typedef struct avr_regbit_t {
 /*
  * These accessors are inlined and are used to perform the operations on
  * avr_regbit_t definitions. This is the "official" way to access bits into registers
- * The small footorint costs brings much better versatility for functions/bits that are
+ * The small footprint costs brings much better versatility for functions/bits that are
  * not always defined in the same place on real AVR cores
  */
 /*