summaryrefslogtreecommitdiff
path: root/Build/flags.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Build/flags.mk')
-rw-r--r--Build/flags.mk16
1 files changed, 16 insertions, 0 deletions
diff --git a/Build/flags.mk b/Build/flags.mk
new file mode 100644
index 0000000..b308760
--- /dev/null
+++ b/Build/flags.mk
@@ -0,0 +1,16 @@
+
+DEBUG_OP = -g3
+CPP_DEBUG_OP = -g3
+
+OPTIMIZATION_OP = -O0
+CPP_OPTIMIZATION_OP = -O0
+
+COMPILE_FLAGS = $(DEBUG_OP) $(OPTIMIZATION_OP) -Wall -c -fmessage-length=0
+
+CPP_COMPILE_FLAGS = $(CPP_DEBUG_OP) $(CPP_OPTIMIZATION_OP) -Wall -c -fmessage-length=0
+
+LINK_FLAGS =
+
+AR_FLAGS =
+
+EDC_COMPILE_FLAGS = \ No newline at end of file