-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
165 lines (142 loc) · 5.1 KB
/
Makefile.am
File metadata and controls
165 lines (142 loc) · 5.1 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#
# Secure Core Utilities
# Copyright (C) 2015, 2017 David M. Syzdek <david@syzdek.net>.
#
# @SYZDEK_BSD_LICENSE_START@
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of David M. Syzdek nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DAVID M SYZDEK BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# @SYZDEK_BSD_LICENSE_END@
#
# @configure_input@
#
# Makefile.am - automate compiling on a unix platform
#
# Sub directories
SUBDIRS =
DIST_SUBDIRS =
# Global flags
AM_LIBS =
AM_LDFLAGS =
AM_CFLAGS = -O2 $(CFLAGS_WARNINGS)
AM_CXXFLAGS = -O2 @AM_CXXFLAGS@
AM_OBJCFLAGS = -O2 @AM_OBJCFLAGS@
AM_CPPFLAGS = -O2 -UPMARK -DHAVE_CONFIG_H=1 -I$(top_builddir)/include -I$(top_srcdir)/include -DSYSCONFDIR="\"$(sysconfdir)\""
ACLOCAL_AMFLAGS = -I m4 -W all -W error
AM_MAKEINFOFLAGS = --no-split
DEFS =
# automake targets
check_PROGRAMS =
doc_DATA = README.md COPYING ChangeLog AUTHORS TODO
include_HEADERS =
lib_LTLIBRARIES =
man_MANS =
info_TEXINFOS =
noinst_LTLIBRARIES =
noinst_HEADERS =
noinst_PROGRAMS =
bin_PROGRAMS = src/securecoreutils
bin_SCRIPTS =
pkgdata_DATA =
sbin_SCRIPTS =
# lists
AM_INSTALLCHECK_STD_OPTIONS_EXEMPT =
BUILT_SOURCES =
TESTS =
XFAIL_TESTS =
EXTRA_MANS =
EXTRA_DIST = \
README.md \
src/lzw/COPYING \
src/lzw/README.md \
src/lzw/UNLICENSE
CLEANFILES = \
$(builddir)/a.out $(srcdir)/a.out \
$(builddir)/*/a.out $(srcdir)/*/a.out \
config.h.in~ $(srcdir)/config.h.in~ \
$(man_MANS) \
$(pkgdata_DATA) \
$(bin_SCRIPTS) \
$(sbin_SCRIPTS) \
@PACKAGE_TARNAME@-*.tar.* \
@PACKAGE_TARNAME@-*.txz \
@PACKAGE_TARNAME@-*.zip
DISTCHECK_CONFIGURE_FLAGS = --enable-strictwarnings
# macros for src/securecoreutils
src_securecoreutils_DEPENDENCIES = Makefile $(LDADD)
src_securecoreutils_SOURCES = $(include_HEADERS) \
$(noinst_HEADERS) \
src/securecoreutils.c \
src/securecoreutils.h \
src/widget-cat.c \
src/widget-cat.h \
src/widget-pathcheck.c \
src/widget-pathcheck.h \
src/widget-rm.c \
src/widget-rm.h \
src/widget-rmdir.c \
src/widget-rmdir.h \
src/widget-tail.c \
src/widget-tail.h \
src/widget-touch.c \
src/widget-touch.h \
src/widget-zcat.c \
src/widget-zcat.h \
src/lzw/headers.h \
src/lzw/lzw.c \
src/lzw/lzw.h \
src/lzw/lzw_internal.h
# Makefile includes
GIT_PACKAGE_VERSION_DIR=include
SUBST_EXPRESSIONS =
include $(srcdir)/@bindletools_srcdir@/build-aux/makefile-autotools.am
include $(srcdir)/@bindletools_srcdir@/build-aux/makefile-subst.am
include $(srcdir)/@bindletools_srcdir@/build-aux/makefile-version.am
# custom targets
.PHONY: install-widget-symlinks
install-widget-symlinks:
( cd $(DESTDIR)$(bindir); ln -sf securecoreutils $(SCU_PREFIX)cat; )
( cd $(DESTDIR)$(bindir); ln -sf securecoreutils $(SCU_PREFIX)path; )
( cd $(DESTDIR)$(bindir); ln -sf securecoreutils $(SCU_PREFIX)rm; )
( cd $(DESTDIR)$(bindir); ln -sf securecoreutils $(SCU_PREFIX)rmdir; )
( cd $(DESTDIR)$(bindir); ln -sf securecoreutils $(SCU_PREFIX)tail; )
( cd $(DESTDIR)$(bindir); ln -sf securecoreutils $(SCU_PREFIX)touch; )
( cd $(DESTDIR)$(bindir); ln -sf securecoreutils $(SCU_PREFIX)zcat; )
( cd $(DESTDIR)$(bindir); ln -sf securecoreutils $(SCU_PREFIX)bzcat; )
( cd $(DESTDIR)$(bindir); ln -sf securecoreutils $(SCU_PREFIX)gzcat; )
( cd $(DESTDIR)$(bindir); ln -sf securecoreutils $(SCU_PREFIX)xzcat; )
if SCU_SYMLINKS
INSTALL_SYMLINKS = install-widget-symlinks
endif
# local targets
install-exec-local: $(INSTALL_SYMLINKS)
install-data-local:
install-data-hook:
uninstall-local:
clean-local:
distclean-local:
rm -fR $(srcdir)/autom4te.cache
# end of automake file