File: Makefile

package info (click to toggle)
pd-vbap 1.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 348 kB
  • sloc: ansic: 2,162; makefile: 21
file content (21 lines) | stat: -rw-r--r-- 726 bytes parent folder | download | duplicates (2)
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