summaryrefslogtreecommitdiff
path: root/core/make.mk
diff options
context:
space:
mode:
Diffstat (limited to 'core/make.mk')
-rw-r--r--core/make.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/core/make.mk b/core/make.mk
new file mode 100644
index 0000000..a1fe655
--- /dev/null
+++ b/core/make.mk
@@ -0,0 +1,11 @@
+DIR_CORE = core/
+SOURCES_CORE += core/math.c
+OBJECTS_CORE += $(SOURCES_CORE:.c=.o)
+LDFLAGS += -lm
+LDFLAGS_BSD += -lm
+
+
+OBJECTS_DIR_CORE += $(subst $(DIR_CORE),$(BUILD_DIR)$(DIR_CORE),$(OBJECTS_CORE))
+
+OBJECTS += $(OBJECTS_CORE)
+OBJECTS_FINAL += $(OBJECTS_DIR_CORE) \ No newline at end of file