blob: 235e9bb08e31c37acd9f83cd0763d3562035a6ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# File: ./src/Makefile.am
# Package: (pd external): weightmap
# Description:
# + src-level automake file
#-----------------------------------------------------------------------
#-----------------------------------------------------------------------
# Includes
#-----------------------------------------------------------------------
include $(top_srcdir)/common/pdexternal.am
## --- recursion subdirectories
#SUBDIRS =
#-----------------------------------------------------------------------
# pd externals (hacked _PROGRAMS target)
#-----------------------------------------------------------------------
## --- externals
pdexterns_PROGRAMS = weightmap
## --- possible externals
EXTRA_PROGRAMS = \
weightmap
## --- patches
pdexterns_DATA =
## --- documentation
pddoc_DATA = weightmap-help.pd
#-----------------------------------------------------------------------
# sources
#-----------------------------------------------------------------------
weightmap_SOURCES = weightmap.c $(top_srcdir)/common/mooPdUtils.h
AM_CPPFLAGS = -I$(top_srcdir)/common
|