gcc.mk (455B)
1 DEBUGCFLAGS = \ 2 -g \ 3 -O0 \ 4 -fno-builtin \ 5 -fno-inline \ 6 -fno-omit-frame-pointer \ 7 -fno-optimize-sibling-calls \ 8 -fno-unroll-loops 9 CFLAGS += \ 10 -std=c99 \ 11 -pedantic \ 12 -pipe \ 13 -fno-strict-aliasing \ 14 -Wall \ 15 -Wimplicit \ 16 -Wmissing-prototypes \ 17 -Wno-comment \ 18 -Wno-missing-braces \ 19 -Wno-parentheses \ 20 -Wno-sign-compare \ 21 -Wno-switch \ 22 -Wpointer-arith \ 23 -Wreturn-type \ 24 -Wstrict-prototypes \ 25 -Wtrigraphs 26 MKDEP = cpp -M 27 SOCFLAGS += -fPIC 28