blob: 57161b4c977ddd389d9d40bec8c9c07a53ae6bed (
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
|
# File: ./src/Makefile.am
# Package: (pd external)
# Description:
# + src-level automake file
#-----------------------------------------------------------------------
#-----------------------------------------------------------------------
# Includes
#-----------------------------------------------------------------------
include $(top_srcdir)/common/pdexternal.am
#-----------------------------------------------------------------------
# pd externals (hacked _PROGRAMS target)
#-----------------------------------------------------------------------
## --- externals
pdexterns_PROGRAMS = locale uselocale
## --- possible externals
EXTRA_PROGRAMS = \
locale uselocale
## --- patches
pdexterns_DATA =
## --- documentation
pddoc_DATA = locale-help.pd
#-----------------------------------------------------------------------
# sources
#-----------------------------------------------------------------------
locale_SOURCES = locale.c
uselocale_SOURCES = uselocale.c
|