diff options
Diffstat (limited to 'tmk_core/native.mk')
-rw-r--r-- | tmk_core/native.mk | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tmk_core/native.mk b/tmk_core/native.mk new file mode 100644 index 000000000..50232ee9b --- /dev/null +++ b/tmk_core/native.mk | |||
@@ -0,0 +1,24 @@ | |||
1 | CC = gcc | ||
2 | OBJCOPY = | ||
3 | OBJDUMP = | ||
4 | SIZE = | ||
5 | AR = | ||
6 | NM = | ||
7 | HEX = | ||
8 | EEP = | ||
9 | BIN = | ||
10 | |||
11 | |||
12 | COMPILEFLAGS += -funsigned-char | ||
13 | COMPILEFLAGS += -funsigned-bitfields | ||
14 | COMPILEFLAGS += -ffunction-sections | ||
15 | COMPILEFLAGS += -fdata-sections | ||
16 | COMPILEFLAGS += -fshort-enums | ||
17 | |||
18 | CFLAGS += $(COMPILEFLAGS) | ||
19 | CFLAGS += -fno-inline-small-functions | ||
20 | CFLAGS += -fno-strict-aliasing | ||
21 | |||
22 | CPPFLAGS += $(COMPILEFLAGS) | ||
23 | CPPFLAGS += -fno-exceptions | ||
24 | CPPFLAGS += -std=gnu++11 \ No newline at end of file | ||