[tuxdroid-svn] r899 - firmware/tuxcore/trunk
Status: Beta
Brought to you by:
ks156
From: jaguarondi <c2m...@c2...> - 2008-02-01 16:38:53
|
Author: jaguarondi Date: 2008-02-01 17:38:55 +0100 (Fri, 01 Feb 2008) New Revision: 899 Modified: firmware/tuxcore/trunk/Makefile Log: * Typo in the Makefile. Modified: firmware/tuxcore/trunk/Makefile =================================================================== --- firmware/tuxcore/trunk/Makefile 2008-02-01 16:30:24 UTC (rev 898) +++ firmware/tuxcore/trunk/Makefile 2008-02-01 16:38:55 UTC (rev 899) @@ -58,7 +58,7 @@ ifdef windir CDEBUG = -gdwarf-2 else -CDEBUG = -g +CDEBUG = -gstabs endif CWARN = -Wall -Wstrict-prototypes CTUNING = -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums @@ -86,8 +86,8 @@ HEX_EEPROM_FLAGS += --change-section-lma .eeprom=0 ## All source and header files -CSOURCE = $(wildcards *.c) -HEADERS = $(wildcards *.h) +CSOURCE = $(wildcard *.c) +HEADERS = $(wildcard *.h) ## Objects that must be built in order to link OBJECTS = main.o adc.o sensors.o motors.o global.o led.o communication.o \ |