diff options
author | cbdev <cb@cbcdn.com> | 2020-06-27 19:26:26 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2020-06-27 19:26:26 +0200 |
commit | 4e5cc42d2eb245bfd2ac616ca6898e4855ec5363 (patch) | |
tree | 90ec95ce2e661051837acb10d041019275e941e9 | |
parent | d23dc2086f4467e7c439f6ddee022e48cbc0dfe1 (diff) | |
download | midimonster-4e5cc42d2eb245bfd2ac616ca6898e4855ec5363.tar.gz midimonster-4e5cc42d2eb245bfd2ac616ca6898e4855ec5363.tar.bz2 midimonster-4e5cc42d2eb245bfd2ac616ca6898e4855ec5363.zip |
Remove manually built backends with clean target
-rw-r--r-- | backends/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/Makefile b/backends/Makefile index dbb9f55..09f5b96 100644 --- a/backends/Makefile +++ b/backends/Makefile @@ -3,6 +3,7 @@ LINUX_BACKENDS = midi.so evdev.so WINDOWS_BACKENDS = artnet.dll osc.dll loopback.dll sacn.dll maweb.dll winmidi.dll openpixelcontrol.dll rtpmidi.dll wininput.dll BACKENDS = artnet.so osc.so loopback.so sacn.so lua.so maweb.so jack.so openpixelcontrol.so python.so rtpmidi.so OPTIONAL_BACKENDS = ola.so +MANUAL_BACKENDS = lua.dll BACKEND_LIB = libmmbackend.o SYSTEM := $(shell uname -s) @@ -97,4 +98,4 @@ windows: ../libmmapi.a $(BACKEND_LIB) $(WINDOWS_BACKENDS) full: $(BACKEND_LIB) $(BACKENDS) $(OPTIONAL_BACKENDS) clean: - $(RM) $(BACKEND_LIB) $(BACKENDS) $(OPTIONAL_BACKENDS) $(WINDOWS_BACKENDS) + $(RM) $(BACKEND_LIB) $(BACKENDS) $(OPTIONAL_BACKENDS) $(WINDOWS_BACKENDS) $(MANUAL_BACKENDS) |