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.
22 lines
425 B
22 lines
425 B
#
|
|
# Makefile
|
|
#
|
|
|
|
CIRCLE_STDLIB_DIR = ../circle-stdlib
|
|
SYNTH_DEXED_DIR = ../Synth_Dexed/src
|
|
|
|
OBJS = main.o kernel.o miniorgan.o \
|
|
$(SYNTH_DEXED_DIR)/synth_dexed.o \
|
|
|
|
INCLUDE += -I $(SYNTH_DEXED_DIR) -I tuning-library
|
|
|
|
EXTRACLEAN = $(SYNTH_DEXED_DIR)/*.o $(SYNTH_DEXED_DIR)/*.d
|
|
|
|
include ./Rules.mk
|
|
|
|
%.o: %.cc
|
|
@echo " CPP $@"
|
|
@$(CPP) $(CPPFLAGS) -c -o $@ $<
|
|
|
|
%.d: %.cc
|
|
@$(CPP) $(CPPFLAGS) -M -MG -MT $*.o -MT $@ -MF $@ $<
|
|
|