diff options
Diffstat (limited to '')
-rw-r--r-- | src/Makefile_Escape.am | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Makefile_Escape.am b/src/Makefile_Escape.am new file mode 100644 index 0000000000..d237d184a2 --- /dev/null +++ b/src/Makefile_Escape.am | |||
@@ -0,0 +1,25 @@ | |||
1 | |||
2 | ### Library | ||
3 | |||
4 | lib_LTLIBRARIES += lib/escape/libescape.la | ||
5 | |||
6 | install_escapeheadersdir = $(includedir)/escape-@VMAJ@ | ||
7 | dist_install_escapeheaders_DATA = \ | ||
8 | lib/escape/Escape.h \ | ||
9 | lib/escape/escape_libgen.h \ | ||
10 | lib/escape/escape_unistd.h | ||
11 | |||
12 | escapemmanheadersdir = $(includedir)/escape-@VMAJ@/sys | ||
13 | dist_escapemmanheaders_DATA = \ | ||
14 | lib/escape/sys/mman.h | ||
15 | |||
16 | lib_escape_libescape_la_SOURCES = \ | ||
17 | lib/escape/escape_libgen.c \ | ||
18 | lib/escape/escape_mman.c \ | ||
19 | lib/escape/escape_unistd.c | ||
20 | |||
21 | lib_escape_libescape_la_CPPFLAGS = \ | ||
22 | -I$(top_srcdir)/src/lib/escape \ | ||
23 | -I$(top_builddir)/src/lib/escape | ||
24 | lib_escape_libescape_la_LIBADD = @ESCAPE_LIBS@ | ||
25 | lib_escape_libescape_la_LDFLAGS = -no-undefined -version-info @version_info@ | ||