blob: 0a62ea41be09eb85ad8df44bbf73c0aaddc9012f (
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: ./Makefile.am
# Package: pd-gfsm
# Description:
# + top-level automake file
#
# Process this file with Automake to create Makefile.in.
#-----------------------------------------------------------------------
#-----------------------------------------------------------------------
# Includes
#-----------------------------------------------------------------------
include $(top_srcdir)/common/pdexternal.am
#-----------------------------------------------------------------------
# Options & Subdirectories
#-----------------------------------------------------------------------
##-- aclocal options (top level only)
ACLOCAL_AMFLAGS = -I common/m4
## --- automake options
#AUTOMAKE_OPTIONS = foreign dist-bzip2 dist-zip
AUTOMAKE_OPTIONS = foreign
## --- recursion subdirectories
#SUBDIRS = config src
SUBDIRS = @PD_GFSM_SUBDIRS@ config src
#-----------------------------------------------------------------------
# Additional Variables & Rules: PODS
#-----------------------------------------------------------------------
PODS = README.pod
all-local: $(PODS:.pod=.txt)
|