-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathMakefile.am
More file actions
22 lines (16 loc) · 832 Bytes
/
Makefile.am
File metadata and controls
22 lines (16 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = foreign 1.4
SUBDIRS = src src/tools
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = ta-lib.pc
# Distribute all .h files in the src directory and its subdirectories
HEADER_FILES = $(shell find src -name '*.h')
# Distribute some C files containing static data used for ta_regtest
GDATA_FILES = $(shell find . -name 'ta_gData*.c')
# Distribute additional bash scripts needed to "make all"
BUILD_SHELL_FILES = src/tools/post-build-bin.sh
# Distribute gen_rust C files which are directly included in gen_code.c
GEN_RUST_FILES = $(shell find . -name 'gen_rust*.c')
# Add more files to EXTRA_DIST to be included on "make dist"
# This is only for files that are not auto-discovered by autotools.
EXTRA_DIST = $(HEADER_FILES) $(GDATA_FILES) $(BUILD_SHELL_FILES) $(GEN_RUST_FILES) VERSION