aboutsummaryrefslogtreecommitdiffstats
path: root/make/mingw.mk
diff options
context:
space:
mode:
Diffstat (limited to 'make/mingw.mk')
-rw-r--r--make/mingw.mk19
1 files changed, 17 insertions, 2 deletions
diff --git a/make/mingw.mk b/make/mingw.mk
index ae599393..14bfdff8 100644
--- a/make/mingw.mk
+++ b/make/mingw.mk
@@ -33,8 +33,23 @@ define c_compile
-c $(1) -o $(call c_src_to_obj,$(1))
endef
-libcompile = $(compile)
-c_libcompile = $(c_compile)
+# 1 2
+# Usage: $(call libcompile,src,includes)
+define libcompile
+ $(CXX) $(CPPFLAGS) $(CXXFLAGS) -DDLL_EXPORT \
+ $(call depflags,$(basename $(call src_to_obj,$(1)))) \
+ $(foreach I,$(2),-I$(I)) \
+ -c $(1) -o $(call src_to_obj,$(1))
+endef
+
+# 1 2
+# Usage: $(call c_libcompile,src,includes)
+define c_libcompile
+ $(CC) $(CPPFLAGS) $(CFLAGS) -DDLL_EXPORT \
+ $(call depflags,$(basename $(call src_to_obj,$(1)))) \
+ $(foreach I,$(2),-I$(I)) \
+ -c $(1) -o $(call c_src_to_obj,$(1))
+endef
# 1 2
# Usage: $(call makeslib,objs,library)