- Refactored MAke system. Put sources into config.mk

- export variables of main Makefile
This commit is contained in:
2023-04-26 10:50:12 +02:00
parent 91518b32e5
commit b4f4b1fa66
7 changed files with 66 additions and 67 deletions
+14 -6
View File
@@ -1,7 +1,15 @@
MAKE_HOME ?= /home/jens/work/software/make
CONFIG ?= debug
BUILD_DIR ?= ./build/${CONFIG}
NAME := JaySynthModules
JUCE_PATH ?= $(realpath ../juce/JUCE-3.1.1)
LIBSRC_PATH ?= $(realpath ../../../libsrc)
VST2_SDK_PATH ?= $(realpath ../sdk/vst/vstsdk2.4)
CXX_SRCS := ButtonLED.cpp
CXX_SRCS += graph_window.cpp
CXX_SRCS += JaySynth.cpp
CXX_SRCS += JaySynthAudioProcessorEditor.cpp
CXX_SRCS += JaySynthMidiCC.cpp
CXX_SRCS += JaySynthMonophonicMGR.cpp
CXX_SRCS += JaySynthSound.cpp
CXX_SRCS += JaySynthVoice.cpp
CXX_SRCS += MidiCC_PopUp.cpp
CXX_SRCS += PluginProcessor.cpp
CXX_SRCS += VelKey_PopUp.cpp
CXX_SRCS += JaySynth.cpp
CXX_SRCS += JK_MidiClock.cpp