mirror of https://github.com/probonopd/MiniDexed
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
621 B
21 lines
621 B
#
|
|
# Makefile
|
|
#
|
|
|
|
CIRCLE_STDLIB_DIR = ../circle-stdlib
|
|
SYNTH_DEXED_DIR = ../Synth_Dexed/src
|
|
CMSIS_DIR = ../CMSIS_5/CMSIS
|
|
|
|
OBJS = main.o kernel.o minidexed.o config.o userinterface.o uimenu.o \
|
|
mididevice.o midikeyboard.o serialmididevice.o pckeyboard.o \
|
|
sysexfileloader.o performanceconfig.o perftimer.o \
|
|
effect_compressor.o effect_platervbstereo.o \
|
|
fx.o fx_components.o \
|
|
fx_svf.o fx_tube.o fx_chorus.o fx_flanger.o fx_orbitone.o fx_phaser.o \
|
|
fx_delay.o fx_shimmer_reverb.o fx_rack.o \
|
|
uibuttons.o midipin.o
|
|
|
|
OPTIMIZE = -O3
|
|
|
|
include ./Synth_Dexed.mk
|
|
include ./Rules.mk
|
|
|