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.
17 lines
423 B
17 lines
423 B
#
|
|
# Makefile
|
|
#
|
|
|
|
CIRCLE_STDLIB_DIR = ../circle-stdlib
|
|
SYNTH_DEXED_DIR = ../Synth_Dexed/src
|
|
|
|
OBJS = main.o kernel.o minidexed.o config.o userinterface.o \
|
|
mididevice.o midikeyboard.o serialmididevice.o pckeyboard.o \
|
|
sysexfileloader.o perftimer.o ky040.o \
|
|
$(SYNTH_DEXED_DIR)/synth_dexed.o
|
|
|
|
INCLUDE += -I $(SYNTH_DEXED_DIR)
|
|
|
|
EXTRACLEAN = $(SYNTH_DEXED_DIR)/*.o $(SYNTH_DEXED_DIR)/*.d
|
|
|
|
include ./Rules.mk
|
|
|