1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
# Makefile to build class 'vbap' for Pure Data.
# Needs Makefile.pdlibbuilder as helper makefile for platform-dependent build
# settings and rules.
# library name
lib.name = vbap
# input source file (class name == source file basename)
class.sources = vbap.c rvbap.c define_loudspeakers.c
# all extra files to be included in binary distribution of the library
datafiles = max2pd.h vbap.h \
README.md LICENSE.txt CHANGELOG.txt \
$(wildcard *.pd) $(wildcard examples/*.pd)
# ignore unused object creation new function warnings
suppress-wunused = yes
# include Makefile.pdlibbuilder, allow override using PDLIBBUILDER_DIR variable
PDLIBBUILDER_DIR=.
include $(PDLIBBUILDER_DIR)/Makefile.pdlibbuilder
|