aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/native.mk
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/native.mk')
-rw-r--r--tmk_core/native.mk24
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 @@
1CC = gcc
2OBJCOPY =
3OBJDUMP =
4SIZE =
5AR =
6NM =
7HEX =
8EEP =
9BIN =
10
11
12COMPILEFLAGS += -funsigned-char
13COMPILEFLAGS += -funsigned-bitfields
14COMPILEFLAGS += -ffunction-sections
15COMPILEFLAGS += -fdata-sections
16COMPILEFLAGS += -fshort-enums
17
18CFLAGS += $(COMPILEFLAGS)
19CFLAGS += -fno-inline-small-functions
20CFLAGS += -fno-strict-aliasing
21
22CPPFLAGS += $(COMPILEFLAGS)
23CPPFLAGS += -fno-exceptions
24CPPFLAGS += -std=gnu++11 \ No newline at end of file