diff options
author | cbdev <cb@cbcdn.com> | 2021-06-28 22:30:02 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2021-06-28 22:30:02 +0200 |
commit | 979ca16917cfca16b42f6f0464ff6c5cd41473b1 (patch) | |
tree | 21f26046109ccfcff9a431c111487269e6593495 /backends/Makefile | |
parent | 17551fe56c8dc20630811b1726559b00cb911abd (diff) | |
download | midimonster-979ca16917cfca16b42f6f0464ff6c5cd41473b1.tar.gz midimonster-979ca16917cfca16b42f6f0464ff6c5cd41473b1.tar.bz2 midimonster-979ca16917cfca16b42f6f0464ff6c5cd41473b1.zip |
Improve windows build
Diffstat (limited to 'backends/Makefile')
-rw-r--r-- | backends/Makefile | 3 |
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) |