Subversion Repositories FlightCtrl

Rev

Rev 205 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 205 Rev 341
Line 75... Line 75...
75
#  -Wa,...:   tell GCC to pass this to the assembler.
75
#  -Wa,...:   tell GCC to pass this to the assembler.
76
#    -ahlms:  create assembler listing
76
#    -ahlms:  create assembler listing
77
CFLAGS = -O$(OPT) \
77
CFLAGS = -O$(OPT) \
78
-funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums \
78
-funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums \
79
-Wall -Wstrict-prototypes \
79
-Wall -Wstrict-prototypes \
80
-mtiny-stack -mcall-prologues \
80
-mtiny-stack -mcall-prologues -Wno-pointer-sign \
81
-Wa,-adhlns=$(<:.c=.lst) \
81
-Wa,-adhlns=$(<:.c=.lst) \
82
$(patsubst %,-I%,$(EXTRAINCDIRS))
82
$(patsubst %,-I%,$(EXTRAINCDIRS))
Line 83... Line 83...
83
 
83