1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
# Makefile to build class 'hexloader' for Pure Data.
# Needs Makefile.pdlibbuilder as helper makefile for platform-dependent build
# settings and rules.
# library name
lib.name = hexloader
# input source file (class name == source file basename)
class.sources = hexloader.c
# all extra files to be included in binary distribution of the library
datafiles = hexloader-help.pd hexloader-meta.pd
datafiles += README.txt LICENSE.txt FAQ.txt
# include Makefile.pdlibbuilder from submodule directory 'pd-lib-builder'
PDLIBBUILDER_DIR=pd-lib-builder
include $(PDLIBBUILDER_DIR)/Makefile.pdlibbuilder
|