aboutsummaryrefslogtreecommitdiffhomepage
path: root/backends/Makefile
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2021-06-28 22:30:02 +0200
committercbdev <cb@cbcdn.com>2021-06-28 22:30:02 +0200
commit979ca16917cfca16b42f6f0464ff6c5cd41473b1 (patch)
tree21f26046109ccfcff9a431c111487269e6593495 /backends/Makefile
parent17551fe56c8dc20630811b1726559b00cb911abd (diff)
downloadmidimonster-979ca16917cfca16b42f6f0464ff6c5cd41473b1.tar.gz
midimonster-979ca16917cfca16b42f6f0464ff6c5cd41473b1.tar.bz2
midimonster-979ca16917cfca16b42f6f0464ff6c5cd41473b1.zip
Improve windows build
Diffstat (limited to 'backends/Makefile')
-rw-r--r--backends/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/Makefile b/backends/Makefile
index 6c46007..be870d6 100644
--- a/backends/Makefile
+++ b/backends/Makefile
@@ -93,6 +93,9 @@ lua.dll: LDLIBS += -L../ -llua53
# info from this one seems to include the actual interpreter library only on some systems, which makes it worse than useless.
python.so: CFLAGS += $(shell python3-config --includes || pkg-config --cflags python3 || pkg-config --cflags python || echo "-DBUILD_ERROR=\"Missing pkg-config data for python3\"")
python.so: LDLIBS += $(shell pkg-config --libs python3-embed || python3-config --libs || pkg-config --libs python3 || echo "-DBUILD_ERROR=\"Missing pkg-config data for python3\"")
+python.so: LDFLAGS += $(shell python3-config --ldflags || echo "-DBUILD_ERROR=\"Missing pkg-config data for python3\"")
+python.dll: CFLAGS += $(shell python3-config --includes || echo "-DBUILD_ERROR=\"Missing pkg-config data for python3\"")
+python.dll: LDLIBS += -L../ -lpython3
# Generic rules on how to build .SO/.DLL's from C and CPP sources
%.so :: %.c %.h $(BACKEND_LIB)