- added config.mk and Makefile for Jay's build system

This commit is contained in:
2023-04-21 14:29:31 +02:00
parent 978c752e8b
commit 3af11a3278
7 changed files with 111 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
include ./config.mk
include $(MAKE_HOME)/defaults.mk
NAME := Synth
GCC_SRCS := blit.c
GCC_SRCS += env.c
GCC_SRCS += lfo.c
GCC_SRCS += mw_wave_data.c
GCC_SRCS += noise.c
GCC_SRCS += param_scale.c
GCC_SRCS += sine.c
GCC_SRCS += smooth.c
GCC_SRCS += synth_debug.c
GCC_SRCS += vcf.c
GCC_SRCS += vco.c
GCC_SRCS += vector_utils.c
GCC_SRCS += voice.c
GCC_SRCS += wavetable.c
INCLUDES ?= -I $(LIBSRC_PATH) -I $(VST2_SDK_PATH)
DEFINES += -Dradio_float_t=float -Dfir_float_t=float -Dsynth_float_t=float
include $(MAKE_HOME)/compile.mk