Blame


1 94a3f4e9 2024-03-30 thomas SUBDIR = got-notify-email got-notify-http
2 ce1bfad9 2024-03-30 thomas
3 b2ce1dae 2024-03-30 thomas # Copyright (C) 1994-2021 Free Software Foundation, Inc.
4 b2ce1dae 2024-03-30 thomas
5 b2ce1dae 2024-03-30 thomas # This Makefile.in is free software; the Free Software Foundation
6 b2ce1dae 2024-03-30 thomas # gives unlimited permission to copy and/or distribute it,
7 b2ce1dae 2024-03-30 thomas # with or without modifications, as long as this notice is preserved.
8 b2ce1dae 2024-03-30 thomas
9 b2ce1dae 2024-03-30 thomas # This program is distributed in the hope that it will be useful,
10 b2ce1dae 2024-03-30 thomas # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11 b2ce1dae 2024-03-30 thomas # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12 b2ce1dae 2024-03-30 thomas # PARTICULAR PURPOSE.
13 b2ce1dae 2024-03-30 thomas
14 b2ce1dae 2024-03-30 thomas
15 b2ce1dae 2024-03-30 thomas
16 b2ce1dae 2024-03-30 thomas am__is_gnu_make = { \
17 b2ce1dae 2024-03-30 thomas if test -z '$(MAKELEVEL)'; then \
18 b2ce1dae 2024-03-30 thomas false; \
19 b2ce1dae 2024-03-30 thomas elif test -n '$(MAKE_HOST)'; then \
20 b2ce1dae 2024-03-30 thomas true; \
21 b2ce1dae 2024-03-30 thomas elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
22 b2ce1dae 2024-03-30 thomas true; \
23 b2ce1dae 2024-03-30 thomas else \
24 b2ce1dae 2024-03-30 thomas false; \
25 b2ce1dae 2024-03-30 thomas fi; \
26 b2ce1dae 2024-03-30 thomas }
27 b2ce1dae 2024-03-30 thomas am__make_running_with_option = \
28 b2ce1dae 2024-03-30 thomas case $${target_option-} in \
29 b2ce1dae 2024-03-30 thomas ?) ;; \
30 b2ce1dae 2024-03-30 thomas *) echo "am__make_running_with_option: internal error: invalid" \
31 b2ce1dae 2024-03-30 thomas "target option '$${target_option-}' specified" >&2; \
32 b2ce1dae 2024-03-30 thomas exit 1;; \
33 b2ce1dae 2024-03-30 thomas esac; \
34 b2ce1dae 2024-03-30 thomas has_opt=no; \
35 b2ce1dae 2024-03-30 thomas sane_makeflags=$$MAKEFLAGS; \
36 b2ce1dae 2024-03-30 thomas if $(am__is_gnu_make); then \
37 b2ce1dae 2024-03-30 thomas sane_makeflags=$$MFLAGS; \
38 b2ce1dae 2024-03-30 thomas else \
39 b2ce1dae 2024-03-30 thomas case $$MAKEFLAGS in \
40 b2ce1dae 2024-03-30 thomas *\\[\ \ ]*) \
41 b2ce1dae 2024-03-30 thomas bs=\\; \
42 b2ce1dae 2024-03-30 thomas sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
43 b2ce1dae 2024-03-30 thomas | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
44 b2ce1dae 2024-03-30 thomas esac; \
45 b2ce1dae 2024-03-30 thomas fi; \
46 b2ce1dae 2024-03-30 thomas skip_next=no; \
47 b2ce1dae 2024-03-30 thomas strip_trailopt () \
48 b2ce1dae 2024-03-30 thomas { \
49 b2ce1dae 2024-03-30 thomas flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
50 b2ce1dae 2024-03-30 thomas }; \
51 b2ce1dae 2024-03-30 thomas for flg in $$sane_makeflags; do \
52 b2ce1dae 2024-03-30 thomas test $$skip_next = yes && { skip_next=no; continue; }; \
53 b2ce1dae 2024-03-30 thomas case $$flg in \
54 b2ce1dae 2024-03-30 thomas *=*|--*) continue;; \
55 b2ce1dae 2024-03-30 thomas -*I) strip_trailopt 'I'; skip_next=yes;; \
56 b2ce1dae 2024-03-30 thomas -*I?*) strip_trailopt 'I';; \
57 b2ce1dae 2024-03-30 thomas -*O) strip_trailopt 'O'; skip_next=yes;; \
58 b2ce1dae 2024-03-30 thomas -*O?*) strip_trailopt 'O';; \
59 b2ce1dae 2024-03-30 thomas -*l) strip_trailopt 'l'; skip_next=yes;; \
60 b2ce1dae 2024-03-30 thomas -*l?*) strip_trailopt 'l';; \
61 b2ce1dae 2024-03-30 thomas -[dEDm]) skip_next=yes;; \
62 b2ce1dae 2024-03-30 thomas -[JT]) skip_next=yes;; \
63 b2ce1dae 2024-03-30 thomas esac; \
64 b2ce1dae 2024-03-30 thomas case $$flg in \
65 b2ce1dae 2024-03-30 thomas *$$target_option*) has_opt=yes; break;; \
66 b2ce1dae 2024-03-30 thomas esac; \
67 b2ce1dae 2024-03-30 thomas done; \
68 b2ce1dae 2024-03-30 thomas test $$has_opt = yes
69 b2ce1dae 2024-03-30 thomas am__make_dryrun = (target_option=n; $(am__make_running_with_option))
70 b2ce1dae 2024-03-30 thomas am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
71 b2ce1dae 2024-03-30 thomas pkgdatadir = $(datadir)/got-portable
72 b2ce1dae 2024-03-30 thomas pkgincludedir = $(includedir)/got-portable
73 b2ce1dae 2024-03-30 thomas pkglibdir = $(libdir)/got-portable
74 b2ce1dae 2024-03-30 thomas pkglibexecdir = $(libexecdir)/got-portable
75 b2ce1dae 2024-03-30 thomas am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
76 b2ce1dae 2024-03-30 thomas install_sh_DATA = $(install_sh) -c -m 644
77 b2ce1dae 2024-03-30 thomas install_sh_PROGRAM = $(install_sh) -c
78 b2ce1dae 2024-03-30 thomas install_sh_SCRIPT = $(install_sh) -c
79 b2ce1dae 2024-03-30 thomas INSTALL_HEADER = $(INSTALL_DATA)
80 b2ce1dae 2024-03-30 thomas transform = $(program_transform_name)
81 b2ce1dae 2024-03-30 thomas NORMAL_INSTALL = :
82 b2ce1dae 2024-03-30 thomas PRE_INSTALL = :
83 b2ce1dae 2024-03-30 thomas POST_INSTALL = :
84 b2ce1dae 2024-03-30 thomas NORMAL_UNINSTALL = :
85 b2ce1dae 2024-03-30 thomas PRE_UNINSTALL = :
86 b2ce1dae 2024-03-30 thomas POST_UNINSTALL = :
87 b2ce1dae 2024-03-30 thomas build_triplet = x86_64-pc-linux-gnu
88 b2ce1dae 2024-03-30 thomas host_triplet = x86_64-pc-linux-gnu
89 b2ce1dae 2024-03-30 thomas subdir = gotd/libexec
90 b2ce1dae 2024-03-30 thomas ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
91 b2ce1dae 2024-03-30 thomas am__aclocal_m4_deps = $(top_srcdir)/configure.ac
92 b2ce1dae 2024-03-30 thomas am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
93 b2ce1dae 2024-03-30 thomas $(ACLOCAL_M4)
94 b2ce1dae 2024-03-30 thomas DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
95 b2ce1dae 2024-03-30 thomas mkinstalldirs = $(install_sh) -d
96 b2ce1dae 2024-03-30 thomas CONFIG_HEADER = $(top_builddir)/include/got_compat.h
97 b2ce1dae 2024-03-30 thomas CONFIG_CLEAN_FILES =
98 b2ce1dae 2024-03-30 thomas CONFIG_CLEAN_VPATH_FILES =
99 b2ce1dae 2024-03-30 thomas AM_V_P = $(am__v_P_$(V))
100 b2ce1dae 2024-03-30 thomas am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
101 b2ce1dae 2024-03-30 thomas am__v_P_0 = false
102 b2ce1dae 2024-03-30 thomas am__v_P_1 = :
103 b2ce1dae 2024-03-30 thomas AM_V_GEN = $(am__v_GEN_$(V))
104 b2ce1dae 2024-03-30 thomas am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
105 b2ce1dae 2024-03-30 thomas am__v_GEN_0 = @echo " GEN " $@;
106 b2ce1dae 2024-03-30 thomas am__v_GEN_1 =
107 b2ce1dae 2024-03-30 thomas AM_V_at = $(am__v_at_$(V))
108 b2ce1dae 2024-03-30 thomas am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
109 b2ce1dae 2024-03-30 thomas am__v_at_0 = @
110 b2ce1dae 2024-03-30 thomas am__v_at_1 =
111 b2ce1dae 2024-03-30 thomas SOURCES =
112 b2ce1dae 2024-03-30 thomas DIST_SOURCES =
113 b2ce1dae 2024-03-30 thomas RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
114 b2ce1dae 2024-03-30 thomas ctags-recursive dvi-recursive html-recursive info-recursive \
115 b2ce1dae 2024-03-30 thomas install-data-recursive install-dvi-recursive \
116 b2ce1dae 2024-03-30 thomas install-exec-recursive install-html-recursive \
117 b2ce1dae 2024-03-30 thomas install-info-recursive install-pdf-recursive \
118 b2ce1dae 2024-03-30 thomas install-ps-recursive install-recursive installcheck-recursive \
119 b2ce1dae 2024-03-30 thomas installdirs-recursive pdf-recursive ps-recursive \
120 b2ce1dae 2024-03-30 thomas tags-recursive uninstall-recursive
121 b2ce1dae 2024-03-30 thomas am__can_run_installinfo = \
122 b2ce1dae 2024-03-30 thomas case $$AM_UPDATE_INFO_DIR in \
123 b2ce1dae 2024-03-30 thomas n|no|NO) false;; \
124 b2ce1dae 2024-03-30 thomas *) (install-info --version) >/dev/null 2>&1;; \
125 b2ce1dae 2024-03-30 thomas esac
126 b2ce1dae 2024-03-30 thomas RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
127 b2ce1dae 2024-03-30 thomas distclean-recursive maintainer-clean-recursive
128 b2ce1dae 2024-03-30 thomas am__recursive_targets = \
129 b2ce1dae 2024-03-30 thomas $(RECURSIVE_TARGETS) \
130 b2ce1dae 2024-03-30 thomas $(RECURSIVE_CLEAN_TARGETS) \
131 b2ce1dae 2024-03-30 thomas $(am__extra_recursive_targets)
132 b2ce1dae 2024-03-30 thomas AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
133 b2ce1dae 2024-03-30 thomas distdir distdir-am
134 b2ce1dae 2024-03-30 thomas am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
135 b2ce1dae 2024-03-30 thomas # Read a list of newline-separated strings from the standard input,
136 b2ce1dae 2024-03-30 thomas # and print each of them once, without duplicates. Input order is
137 b2ce1dae 2024-03-30 thomas # *not* preserved.
138 b2ce1dae 2024-03-30 thomas am__uniquify_input = $(AWK) '\
139 b2ce1dae 2024-03-30 thomas BEGIN { nonempty = 0; } \
140 b2ce1dae 2024-03-30 thomas { items[$$0] = 1; nonempty = 1; } \
141 b2ce1dae 2024-03-30 thomas END { if (nonempty) { for (i in items) print i; }; } \
142 b2ce1dae 2024-03-30 thomas '
143 b2ce1dae 2024-03-30 thomas # Make sure the list of sources is unique. This is necessary because,
144 b2ce1dae 2024-03-30 thomas # e.g., the same source file might be shared among _SOURCES variables
145 b2ce1dae 2024-03-30 thomas # for different programs/libraries.
146 b2ce1dae 2024-03-30 thomas am__define_uniq_tagged_files = \
147 b2ce1dae 2024-03-30 thomas list='$(am__tagged_files)'; \
148 b2ce1dae 2024-03-30 thomas unique=`for i in $$list; do \
149 b2ce1dae 2024-03-30 thomas if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
150 b2ce1dae 2024-03-30 thomas done | $(am__uniquify_input)`
151 b2ce1dae 2024-03-30 thomas DIST_SUBDIRS = $(SUBDIRS)
152 b2ce1dae 2024-03-30 thomas am__DIST_COMMON = $(srcdir)/Makefile.in
153 b2ce1dae 2024-03-30 thomas DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
154 b2ce1dae 2024-03-30 thomas am__relativize = \
155 b2ce1dae 2024-03-30 thomas dir0=`pwd`; \
156 b2ce1dae 2024-03-30 thomas sed_first='s,^\([^/]*\)/.*$$,\1,'; \
157 b2ce1dae 2024-03-30 thomas sed_rest='s,^[^/]*/*,,'; \
158 b2ce1dae 2024-03-30 thomas sed_last='s,^.*/\([^/]*\)$$,\1,'; \
159 b2ce1dae 2024-03-30 thomas sed_butlast='s,/*[^/]*$$,,'; \
160 b2ce1dae 2024-03-30 thomas while test -n "$$dir1"; do \
161 b2ce1dae 2024-03-30 thomas first=`echo "$$dir1" | sed -e "$$sed_first"`; \
162 b2ce1dae 2024-03-30 thomas if test "$$first" != "."; then \
163 b2ce1dae 2024-03-30 thomas if test "$$first" = ".."; then \
164 b2ce1dae 2024-03-30 thomas dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
165 b2ce1dae 2024-03-30 thomas dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
166 b2ce1dae 2024-03-30 thomas else \
167 b2ce1dae 2024-03-30 thomas first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
168 b2ce1dae 2024-03-30 thomas if test "$$first2" = "$$first"; then \
169 b2ce1dae 2024-03-30 thomas dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
170 b2ce1dae 2024-03-30 thomas else \
171 b2ce1dae 2024-03-30 thomas dir2="../$$dir2"; \
172 b2ce1dae 2024-03-30 thomas fi; \
173 b2ce1dae 2024-03-30 thomas dir0="$$dir0"/"$$first"; \
174 b2ce1dae 2024-03-30 thomas fi; \
175 b2ce1dae 2024-03-30 thomas fi; \
176 b2ce1dae 2024-03-30 thomas dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
177 b2ce1dae 2024-03-30 thomas done; \
178 b2ce1dae 2024-03-30 thomas reldir="$$dir2"
179 b2ce1dae 2024-03-30 thomas ACLOCAL = ${SHELL} '/home/n6tadam/p/got/got-portable/etc/missing' aclocal-1.16
180 b2ce1dae 2024-03-30 thomas AMTAR = $${TAR-tar}
181 b2ce1dae 2024-03-30 thomas AM_CFLAGS =
182 b2ce1dae 2024-03-30 thomas AM_CPPFLAGS =
183 b2ce1dae 2024-03-30 thomas AM_DEFAULT_VERBOSITY = 1
184 b2ce1dae 2024-03-30 thomas AM_LDFLAGS =
185 b2ce1dae 2024-03-30 thomas AR = ar
186 b2ce1dae 2024-03-30 thomas AUTOCONF = ${SHELL} '/home/n6tadam/p/got/got-portable/etc/missing' autoconf
187 b2ce1dae 2024-03-30 thomas AUTOHEADER = ${SHELL} '/home/n6tadam/p/got/got-portable/etc/missing' autoheader
188 b2ce1dae 2024-03-30 thomas AUTOMAKE = ${SHELL} '/home/n6tadam/p/got/got-portable/etc/missing' automake-1.16
189 b2ce1dae 2024-03-30 thomas AWK = gawk
190 b2ce1dae 2024-03-30 thomas CC = gcc
191 b2ce1dae 2024-03-30 thomas CCDEPMODE = depmode=gcc3
192 b2ce1dae 2024-03-30 thomas CFLAGS = -g -O2
193 b2ce1dae 2024-03-30 thomas CPP = gcc -E
194 b2ce1dae 2024-03-30 thomas CPPFLAGS =
195 b2ce1dae 2024-03-30 thomas CSCOPE = cscope
196 b2ce1dae 2024-03-30 thomas CTAGS = ctags
197 b2ce1dae 2024-03-30 thomas CYGPATH_W = echo
198 b2ce1dae 2024-03-30 thomas DEFS = -DHAVE_CONFIG_H
199 b2ce1dae 2024-03-30 thomas DEPDIR = .deps
200 b2ce1dae 2024-03-30 thomas ECHO_C =
201 b2ce1dae 2024-03-30 thomas ECHO_N = -n
202 b2ce1dae 2024-03-30 thomas ECHO_T =
203 b2ce1dae 2024-03-30 thomas ETAGS = etags
204 b2ce1dae 2024-03-30 thomas EXEEXT =
205 b2ce1dae 2024-03-30 thomas GITWRAPPER_LIBEXEC_PATHC =
206 b2ce1dae 2024-03-30 thomas GOTD_EMPTY_PATHC =
207 b2ce1dae 2024-03-30 thomas GOT_RELEASE =
208 b2ce1dae 2024-03-30 thomas INSTALL = /usr/bin/install -c
209 b2ce1dae 2024-03-30 thomas INSTALL_DATA = ${INSTALL} -m 644
210 b2ce1dae 2024-03-30 thomas INSTALL_PROGRAM = ${INSTALL}
211 b2ce1dae 2024-03-30 thomas INSTALL_SCRIPT = ${INSTALL}
212 b2ce1dae 2024-03-30 thomas INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
213 b2ce1dae 2024-03-30 thomas LDFLAGS =
214 b2ce1dae 2024-03-30 thomas LIBBSD_CFLAGS = -isystem /usr/include/bsd -DLIBBSD_OVERLAY
215 b2ce1dae 2024-03-30 thomas LIBBSD_LIBS = -lbsd
216 b2ce1dae 2024-03-30 thomas LIBEVENT_CFLAGS =
217 b2ce1dae 2024-03-30 thomas LIBEVENT_CORE_CFLAGS =
218 b2ce1dae 2024-03-30 thomas LIBEVENT_CORE_LIBS = -levent_core
219 b2ce1dae 2024-03-30 thomas LIBEVENT_LIBS =
220 b2ce1dae 2024-03-30 thomas LIBMD_CFLAGS =
221 b2ce1dae 2024-03-30 thomas LIBMD_LIBS = -lmd
222 b2ce1dae 2024-03-30 thomas LIBNCURSES_CFLAGS = -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600
223 b2ce1dae 2024-03-30 thomas LIBNCURSES_LIBS = -lncursesw
224 b2ce1dae 2024-03-30 thomas LIBOBJS = ${LIBOBJDIR}fmt_scaled$U.o ${LIBOBJDIR}freezero$U.o ${LIBOBJDIR}getdtablecount$U.o ${LIBOBJDIR}getprogname$U.o ${LIBOBJDIR}recallocarray$U.o ${LIBOBJDIR}strtonum$U.o ${LIBOBJDIR}getopt$U.o
225 b2ce1dae 2024-03-30 thomas LIBPANELW_CFLAGS = -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600
226 b2ce1dae 2024-03-30 thomas LIBPANELW_LIBS = -lpanelw
227 b2ce1dae 2024-03-30 thomas LIBS =
228 b2ce1dae 2024-03-30 thomas LIBUUID_CFLAGS = -I/usr/include/uuid
229 b2ce1dae 2024-03-30 thomas LIBUUID_LIBS = -luuid
230 b2ce1dae 2024-03-30 thomas LN_S = ln -s
231 b2ce1dae 2024-03-30 thomas LTLIBOBJS = ${LIBOBJDIR}fmt_scaled$U.lo ${LIBOBJDIR}freezero$U.lo ${LIBOBJDIR}getdtablecount$U.lo ${LIBOBJDIR}getprogname$U.lo ${LIBOBJDIR}recallocarray$U.lo ${LIBOBJDIR}strtonum$U.lo ${LIBOBJDIR}getopt$U.lo
232 b2ce1dae 2024-03-30 thomas MAKEINFO = ${SHELL} '/home/n6tadam/p/got/got-portable/etc/missing' makeinfo
233 b2ce1dae 2024-03-30 thomas MKDIR_P = /usr/bin/mkdir -p
234 b2ce1dae 2024-03-30 thomas OBJEXT = o
235 b2ce1dae 2024-03-30 thomas PACKAGE = got-portable
236 b2ce1dae 2024-03-30 thomas PACKAGE_BUGREPORT = thomas@xteddy.org
237 b2ce1dae 2024-03-30 thomas PACKAGE_NAME = got-portable
238 b2ce1dae 2024-03-30 thomas PACKAGE_STRING = got-portable 0.97
239 b2ce1dae 2024-03-30 thomas PACKAGE_TARNAME = got-portable
240 b2ce1dae 2024-03-30 thomas PACKAGE_URL =
241 b2ce1dae 2024-03-30 thomas PACKAGE_VERSION = 0.97
242 b2ce1dae 2024-03-30 thomas PATH_SEPARATOR = :
243 b2ce1dae 2024-03-30 thomas PKG_CONFIG = /usr/bin/pkg-config
244 b2ce1dae 2024-03-30 thomas PKG_CONFIG_LIBDIR =
245 b2ce1dae 2024-03-30 thomas PKG_CONFIG_PATH =
246 b2ce1dae 2024-03-30 thomas PLATFORM = linux
247 b2ce1dae 2024-03-30 thomas RANLIB = ranlib
248 b2ce1dae 2024-03-30 thomas SET_MAKE =
249 b2ce1dae 2024-03-30 thomas SHELL = /bin/sh
250 b2ce1dae 2024-03-30 thomas STRIP =
251 b2ce1dae 2024-03-30 thomas VERSION = 0.97
252 b2ce1dae 2024-03-30 thomas YACC = bison -y
253 b2ce1dae 2024-03-30 thomas YFLAGS =
254 b2ce1dae 2024-03-30 thomas ZLIB_CFLAGS =
255 b2ce1dae 2024-03-30 thomas ZLIB_LIBS = -lz
256 b2ce1dae 2024-03-30 thomas abs_builddir = /home/n6tadam/p/got/got-portable/gotd/libexec
257 b2ce1dae 2024-03-30 thomas abs_srcdir = /home/n6tadam/p/got/got-portable/gotd/libexec
258 b2ce1dae 2024-03-30 thomas abs_top_builddir = /home/n6tadam/p/got/got-portable
259 b2ce1dae 2024-03-30 thomas abs_top_srcdir = /home/n6tadam/p/got/got-portable
260 b2ce1dae 2024-03-30 thomas ac_ct_AR = ar
261 b2ce1dae 2024-03-30 thomas ac_ct_CC = gcc
262 b2ce1dae 2024-03-30 thomas am__include = include
263 b2ce1dae 2024-03-30 thomas am__leading_dot = .
264 b2ce1dae 2024-03-30 thomas am__quote =
265 b2ce1dae 2024-03-30 thomas am__tar = $${TAR-tar} chof - "$$tardir"
266 b2ce1dae 2024-03-30 thomas am__untar = $${TAR-tar} xf -
267 b2ce1dae 2024-03-30 thomas bindir = ${exec_prefix}/bin
268 b2ce1dae 2024-03-30 thomas build = x86_64-pc-linux-gnu
269 b2ce1dae 2024-03-30 thomas build_alias =
270 b2ce1dae 2024-03-30 thomas build_cpu = x86_64
271 b2ce1dae 2024-03-30 thomas build_os = linux-gnu
272 b2ce1dae 2024-03-30 thomas build_vendor = pc
273 b2ce1dae 2024-03-30 thomas builddir = .
274 b2ce1dae 2024-03-30 thomas datadir = ${datarootdir}
275 b2ce1dae 2024-03-30 thomas datarootdir = ${prefix}/share
276 b2ce1dae 2024-03-30 thomas docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
277 b2ce1dae 2024-03-30 thomas dvidir = ${docdir}
278 b2ce1dae 2024-03-30 thomas exec_prefix = ${prefix}
279 b2ce1dae 2024-03-30 thomas host = x86_64-pc-linux-gnu
280 b2ce1dae 2024-03-30 thomas host_alias =
281 b2ce1dae 2024-03-30 thomas host_cpu = x86_64
282 b2ce1dae 2024-03-30 thomas host_os = linux-gnu
283 b2ce1dae 2024-03-30 thomas host_vendor = pc
284 b2ce1dae 2024-03-30 thomas htmldir = ${docdir}
285 b2ce1dae 2024-03-30 thomas includedir = ${prefix}/include
286 b2ce1dae 2024-03-30 thomas infodir = ${datarootdir}/info
287 b2ce1dae 2024-03-30 thomas install_sh = ${SHELL} /home/n6tadam/p/got/got-portable/etc/install-sh
288 b2ce1dae 2024-03-30 thomas libbsd_CFLAGS = -isystem /usr/include/bsd -DLIBBSD_OVERLAY
289 b2ce1dae 2024-03-30 thomas libbsd_LIBS = -lbsd
290 b2ce1dae 2024-03-30 thomas libdir = ${exec_prefix}/lib
291 b2ce1dae 2024-03-30 thomas libevent_CFLAGS =
292 b2ce1dae 2024-03-30 thomas libevent_LIBS = -levent_core
293 b2ce1dae 2024-03-30 thomas libexecdir = ${exec_prefix}/libexec
294 b2ce1dae 2024-03-30 thomas libmd_CFLAGS =
295 b2ce1dae 2024-03-30 thomas libmd_LIBS = -lmd
296 b2ce1dae 2024-03-30 thomas libncurses_CFLAGS = -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600
297 b2ce1dae 2024-03-30 thomas libncurses_LIBS = -lncursesw -lpanelw
298 b2ce1dae 2024-03-30 thomas libresolv_LIBS = -lresolv
299 b2ce1dae 2024-03-30 thomas libutil_LIBS =
300 b2ce1dae 2024-03-30 thomas libuuid_CFLAGS = -I/usr/include/uuid
301 b2ce1dae 2024-03-30 thomas libuuid_LIBS = -luuid
302 b2ce1dae 2024-03-30 thomas localedir = ${datarootdir}/locale
303 b2ce1dae 2024-03-30 thomas localstatedir = ${prefix}/var
304 b2ce1dae 2024-03-30 thomas mandir = ${datarootdir}/man
305 b2ce1dae 2024-03-30 thomas mkdir_p = $(MKDIR_P)
306 b2ce1dae 2024-03-30 thomas oldincludedir = /usr/include
307 b2ce1dae 2024-03-30 thomas pdfdir = ${docdir}
308 b2ce1dae 2024-03-30 thomas prefix = /usr/local
309 b2ce1dae 2024-03-30 thomas program_transform_name = s,x,x,
310 b2ce1dae 2024-03-30 thomas psdir = ${docdir}
311 b2ce1dae 2024-03-30 thomas runstatedir = ${localstatedir}/run
312 b2ce1dae 2024-03-30 thomas sbindir = ${exec_prefix}/sbin
313 b2ce1dae 2024-03-30 thomas sharedstatedir = ${prefix}/com
314 b2ce1dae 2024-03-30 thomas srcdir = .
315 b2ce1dae 2024-03-30 thomas subdirs = template
316 b2ce1dae 2024-03-30 thomas sysconfdir = ${prefix}/etc
317 b2ce1dae 2024-03-30 thomas target_alias =
318 b2ce1dae 2024-03-30 thomas top_build_prefix = ../../
319 b2ce1dae 2024-03-30 thomas top_builddir = ../..
320 b2ce1dae 2024-03-30 thomas top_srcdir = ../..
321 b2ce1dae 2024-03-30 thomas zlib_CFLAGS =
322 b2ce1dae 2024-03-30 thomas zlib_LIBS = -lz
323 b2ce1dae 2024-03-30 thomas SUBDIRS = got-notify-email
324 b2ce1dae 2024-03-30 thomas all: all-recursive
325 b2ce1dae 2024-03-30 thomas
326 b2ce1dae 2024-03-30 thomas .SUFFIXES:
327 b2ce1dae 2024-03-30 thomas $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
328 b2ce1dae 2024-03-30 thomas @for dep in $?; do \
329 b2ce1dae 2024-03-30 thomas case '$(am__configure_deps)' in \
330 b2ce1dae 2024-03-30 thomas *$$dep*) \
331 b2ce1dae 2024-03-30 thomas ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
332 b2ce1dae 2024-03-30 thomas && { if test -f $@; then exit 0; else break; fi; }; \
333 b2ce1dae 2024-03-30 thomas exit 1;; \
334 b2ce1dae 2024-03-30 thomas esac; \
335 b2ce1dae 2024-03-30 thomas done; \
336 b2ce1dae 2024-03-30 thomas echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign gotd/libexec/Makefile'; \
337 b2ce1dae 2024-03-30 thomas $(am__cd) $(top_srcdir) && \
338 b2ce1dae 2024-03-30 thomas $(AUTOMAKE) --foreign gotd/libexec/Makefile
339 b2ce1dae 2024-03-30 thomas Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
340 b2ce1dae 2024-03-30 thomas @case '$?' in \
341 b2ce1dae 2024-03-30 thomas *config.status*) \
342 b2ce1dae 2024-03-30 thomas cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
343 b2ce1dae 2024-03-30 thomas *) \
344 b2ce1dae 2024-03-30 thomas echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
345 b2ce1dae 2024-03-30 thomas cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
346 b2ce1dae 2024-03-30 thomas esac;
347 b2ce1dae 2024-03-30 thomas
348 b2ce1dae 2024-03-30 thomas $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
349 b2ce1dae 2024-03-30 thomas cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
350 b2ce1dae 2024-03-30 thomas
351 b2ce1dae 2024-03-30 thomas $(top_srcdir)/configure: $(am__configure_deps)
352 b2ce1dae 2024-03-30 thomas cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
353 b2ce1dae 2024-03-30 thomas $(ACLOCAL_M4): $(am__aclocal_m4_deps)
354 b2ce1dae 2024-03-30 thomas cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
355 b2ce1dae 2024-03-30 thomas $(am__aclocal_m4_deps):
356 b2ce1dae 2024-03-30 thomas
357 b2ce1dae 2024-03-30 thomas # This directory's subdirectories are mostly independent; you can cd
358 b2ce1dae 2024-03-30 thomas # into them and run 'make' without going through this Makefile.
359 b2ce1dae 2024-03-30 thomas # To change the values of 'make' variables: instead of editing Makefiles,
360 b2ce1dae 2024-03-30 thomas # (1) if the variable is set in 'config.status', edit 'config.status'
361 b2ce1dae 2024-03-30 thomas # (which will cause the Makefiles to be regenerated when you run 'make');
362 b2ce1dae 2024-03-30 thomas # (2) otherwise, pass the desired values on the 'make' command line.
363 b2ce1dae 2024-03-30 thomas $(am__recursive_targets):
364 b2ce1dae 2024-03-30 thomas @fail=; \
365 b2ce1dae 2024-03-30 thomas if $(am__make_keepgoing); then \
366 b2ce1dae 2024-03-30 thomas failcom='fail=yes'; \
367 b2ce1dae 2024-03-30 thomas else \
368 b2ce1dae 2024-03-30 thomas failcom='exit 1'; \
369 b2ce1dae 2024-03-30 thomas fi; \
370 b2ce1dae 2024-03-30 thomas dot_seen=no; \
371 b2ce1dae 2024-03-30 thomas target=`echo $@ | sed s/-recursive//`; \
372 b2ce1dae 2024-03-30 thomas case "$@" in \
373 b2ce1dae 2024-03-30 thomas distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
374 b2ce1dae 2024-03-30 thomas *) list='$(SUBDIRS)' ;; \
375 b2ce1dae 2024-03-30 thomas esac; \
376 b2ce1dae 2024-03-30 thomas for subdir in $$list; do \
377 b2ce1dae 2024-03-30 thomas echo "Making $$target in $$subdir"; \
378 b2ce1dae 2024-03-30 thomas if test "$$subdir" = "."; then \
379 b2ce1dae 2024-03-30 thomas dot_seen=yes; \
380 b2ce1dae 2024-03-30 thomas local_target="$$target-am"; \
381 b2ce1dae 2024-03-30 thomas else \
382 b2ce1dae 2024-03-30 thomas local_target="$$target"; \
383 b2ce1dae 2024-03-30 thomas fi; \
384 b2ce1dae 2024-03-30 thomas ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
385 b2ce1dae 2024-03-30 thomas || eval $$failcom; \
386 b2ce1dae 2024-03-30 thomas done; \
387 b2ce1dae 2024-03-30 thomas if test "$$dot_seen" = "no"; then \
388 b2ce1dae 2024-03-30 thomas $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
389 b2ce1dae 2024-03-30 thomas fi; test -z "$$fail"
390 b2ce1dae 2024-03-30 thomas
391 b2ce1dae 2024-03-30 thomas ID: $(am__tagged_files)
392 b2ce1dae 2024-03-30 thomas $(am__define_uniq_tagged_files); mkid -fID $$unique
393 b2ce1dae 2024-03-30 thomas tags: tags-recursive
394 b2ce1dae 2024-03-30 thomas TAGS: tags
395 b2ce1dae 2024-03-30 thomas
396 b2ce1dae 2024-03-30 thomas tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
397 b2ce1dae 2024-03-30 thomas set x; \
398 b2ce1dae 2024-03-30 thomas here=`pwd`; \
399 b2ce1dae 2024-03-30 thomas if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
400 b2ce1dae 2024-03-30 thomas include_option=--etags-include; \
401 b2ce1dae 2024-03-30 thomas empty_fix=.; \
402 b2ce1dae 2024-03-30 thomas else \
403 b2ce1dae 2024-03-30 thomas include_option=--include; \
404 b2ce1dae 2024-03-30 thomas empty_fix=; \
405 b2ce1dae 2024-03-30 thomas fi; \
406 b2ce1dae 2024-03-30 thomas list='$(SUBDIRS)'; for subdir in $$list; do \
407 b2ce1dae 2024-03-30 thomas if test "$$subdir" = .; then :; else \
408 b2ce1dae 2024-03-30 thomas test ! -f $$subdir/TAGS || \
409 b2ce1dae 2024-03-30 thomas set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
410 b2ce1dae 2024-03-30 thomas fi; \
411 b2ce1dae 2024-03-30 thomas done; \
412 b2ce1dae 2024-03-30 thomas $(am__define_uniq_tagged_files); \
413 b2ce1dae 2024-03-30 thomas shift; \
414 b2ce1dae 2024-03-30 thomas if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
415 b2ce1dae 2024-03-30 thomas test -n "$$unique" || unique=$$empty_fix; \
416 b2ce1dae 2024-03-30 thomas if test $$# -gt 0; then \
417 b2ce1dae 2024-03-30 thomas $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
418 b2ce1dae 2024-03-30 thomas "$$@" $$unique; \
419 b2ce1dae 2024-03-30 thomas else \
420 b2ce1dae 2024-03-30 thomas $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
421 b2ce1dae 2024-03-30 thomas $$unique; \
422 b2ce1dae 2024-03-30 thomas fi; \
423 b2ce1dae 2024-03-30 thomas fi
424 b2ce1dae 2024-03-30 thomas ctags: ctags-recursive
425 b2ce1dae 2024-03-30 thomas
426 b2ce1dae 2024-03-30 thomas CTAGS: ctags
427 b2ce1dae 2024-03-30 thomas ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
428 b2ce1dae 2024-03-30 thomas $(am__define_uniq_tagged_files); \
429 b2ce1dae 2024-03-30 thomas test -z "$(CTAGS_ARGS)$$unique" \
430 b2ce1dae 2024-03-30 thomas || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
431 b2ce1dae 2024-03-30 thomas $$unique
432 b2ce1dae 2024-03-30 thomas
433 b2ce1dae 2024-03-30 thomas GTAGS:
434 b2ce1dae 2024-03-30 thomas here=`$(am__cd) $(top_builddir) && pwd` \
435 b2ce1dae 2024-03-30 thomas && $(am__cd) $(top_srcdir) \
436 b2ce1dae 2024-03-30 thomas && gtags -i $(GTAGS_ARGS) "$$here"
437 b2ce1dae 2024-03-30 thomas cscopelist: cscopelist-recursive
438 b2ce1dae 2024-03-30 thomas
439 b2ce1dae 2024-03-30 thomas cscopelist-am: $(am__tagged_files)
440 b2ce1dae 2024-03-30 thomas list='$(am__tagged_files)'; \
441 b2ce1dae 2024-03-30 thomas case "$(srcdir)" in \
442 b2ce1dae 2024-03-30 thomas [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
443 b2ce1dae 2024-03-30 thomas *) sdir=$(subdir)/$(srcdir) ;; \
444 b2ce1dae 2024-03-30 thomas esac; \
445 b2ce1dae 2024-03-30 thomas for i in $$list; do \
446 b2ce1dae 2024-03-30 thomas if test -f "$$i"; then \
447 b2ce1dae 2024-03-30 thomas echo "$(subdir)/$$i"; \
448 b2ce1dae 2024-03-30 thomas else \
449 b2ce1dae 2024-03-30 thomas echo "$$sdir/$$i"; \
450 b2ce1dae 2024-03-30 thomas fi; \
451 b2ce1dae 2024-03-30 thomas done >> $(top_builddir)/cscope.files
452 b2ce1dae 2024-03-30 thomas
453 b2ce1dae 2024-03-30 thomas distclean-tags:
454 b2ce1dae 2024-03-30 thomas -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
455 b2ce1dae 2024-03-30 thomas distdir: $(BUILT_SOURCES)
456 b2ce1dae 2024-03-30 thomas $(MAKE) $(AM_MAKEFLAGS) distdir-am
457 b2ce1dae 2024-03-30 thomas
458 b2ce1dae 2024-03-30 thomas distdir-am: $(DISTFILES)
459 b2ce1dae 2024-03-30 thomas @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
460 b2ce1dae 2024-03-30 thomas topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
461 b2ce1dae 2024-03-30 thomas list='$(DISTFILES)'; \
462 b2ce1dae 2024-03-30 thomas dist_files=`for file in $$list; do echo $$file; done | \
463 b2ce1dae 2024-03-30 thomas sed -e "s|^$$srcdirstrip/||;t" \
464 b2ce1dae 2024-03-30 thomas -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
465 b2ce1dae 2024-03-30 thomas case $$dist_files in \
466 b2ce1dae 2024-03-30 thomas */*) $(MKDIR_P) `echo "$$dist_files" | \
467 b2ce1dae 2024-03-30 thomas sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
468 b2ce1dae 2024-03-30 thomas sort -u` ;; \
469 b2ce1dae 2024-03-30 thomas esac; \
470 b2ce1dae 2024-03-30 thomas for file in $$dist_files; do \
471 b2ce1dae 2024-03-30 thomas if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
472 b2ce1dae 2024-03-30 thomas if test -d $$d/$$file; then \
473 b2ce1dae 2024-03-30 thomas dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
474 b2ce1dae 2024-03-30 thomas if test -d "$(distdir)/$$file"; then \
475 b2ce1dae 2024-03-30 thomas find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
476 b2ce1dae 2024-03-30 thomas fi; \
477 b2ce1dae 2024-03-30 thomas if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
478 b2ce1dae 2024-03-30 thomas cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
479 b2ce1dae 2024-03-30 thomas find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
480 b2ce1dae 2024-03-30 thomas fi; \
481 b2ce1dae 2024-03-30 thomas cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
482 b2ce1dae 2024-03-30 thomas else \
483 b2ce1dae 2024-03-30 thomas test -f "$(distdir)/$$file" \
484 b2ce1dae 2024-03-30 thomas || cp -p $$d/$$file "$(distdir)/$$file" \
485 b2ce1dae 2024-03-30 thomas || exit 1; \
486 b2ce1dae 2024-03-30 thomas fi; \
487 b2ce1dae 2024-03-30 thomas done
488 b2ce1dae 2024-03-30 thomas @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
489 b2ce1dae 2024-03-30 thomas if test "$$subdir" = .; then :; else \
490 b2ce1dae 2024-03-30 thomas $(am__make_dryrun) \
491 b2ce1dae 2024-03-30 thomas || test -d "$(distdir)/$$subdir" \
492 b2ce1dae 2024-03-30 thomas || $(MKDIR_P) "$(distdir)/$$subdir" \
493 b2ce1dae 2024-03-30 thomas || exit 1; \
494 b2ce1dae 2024-03-30 thomas dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
495 b2ce1dae 2024-03-30 thomas $(am__relativize); \
496 b2ce1dae 2024-03-30 thomas new_distdir=$$reldir; \
497 b2ce1dae 2024-03-30 thomas dir1=$$subdir; dir2="$(top_distdir)"; \
498 b2ce1dae 2024-03-30 thomas $(am__relativize); \
499 b2ce1dae 2024-03-30 thomas new_top_distdir=$$reldir; \
500 b2ce1dae 2024-03-30 thomas echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
501 b2ce1dae 2024-03-30 thomas echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
502 b2ce1dae 2024-03-30 thomas ($(am__cd) $$subdir && \
503 b2ce1dae 2024-03-30 thomas $(MAKE) $(AM_MAKEFLAGS) \
504 b2ce1dae 2024-03-30 thomas top_distdir="$$new_top_distdir" \
505 b2ce1dae 2024-03-30 thomas distdir="$$new_distdir" \
506 b2ce1dae 2024-03-30 thomas am__remove_distdir=: \
507 b2ce1dae 2024-03-30 thomas am__skip_length_check=: \
508 b2ce1dae 2024-03-30 thomas am__skip_mode_fix=: \
509 b2ce1dae 2024-03-30 thomas distdir) \
510 b2ce1dae 2024-03-30 thomas || exit 1; \
511 b2ce1dae 2024-03-30 thomas fi; \
512 b2ce1dae 2024-03-30 thomas done
513 b2ce1dae 2024-03-30 thomas check-am: all-am
514 b2ce1dae 2024-03-30 thomas check: check-recursive
515 b2ce1dae 2024-03-30 thomas all-am: Makefile
516 b2ce1dae 2024-03-30 thomas installdirs: installdirs-recursive
517 b2ce1dae 2024-03-30 thomas installdirs-am:
518 b2ce1dae 2024-03-30 thomas install: install-recursive
519 b2ce1dae 2024-03-30 thomas install-exec: install-exec-recursive
520 b2ce1dae 2024-03-30 thomas install-data: install-data-recursive
521 b2ce1dae 2024-03-30 thomas uninstall: uninstall-recursive
522 b2ce1dae 2024-03-30 thomas
523 b2ce1dae 2024-03-30 thomas install-am: all-am
524 b2ce1dae 2024-03-30 thomas @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
525 b2ce1dae 2024-03-30 thomas
526 b2ce1dae 2024-03-30 thomas installcheck: installcheck-recursive
527 b2ce1dae 2024-03-30 thomas install-strip:
528 b2ce1dae 2024-03-30 thomas if test -z '$(STRIP)'; then \
529 b2ce1dae 2024-03-30 thomas $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
530 b2ce1dae 2024-03-30 thomas install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
531 b2ce1dae 2024-03-30 thomas install; \
532 b2ce1dae 2024-03-30 thomas else \
533 b2ce1dae 2024-03-30 thomas $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
534 b2ce1dae 2024-03-30 thomas install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
535 b2ce1dae 2024-03-30 thomas "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
536 b2ce1dae 2024-03-30 thomas fi
537 b2ce1dae 2024-03-30 thomas mostlyclean-generic:
538 b2ce1dae 2024-03-30 thomas
539 b2ce1dae 2024-03-30 thomas clean-generic:
540 b2ce1dae 2024-03-30 thomas
541 b2ce1dae 2024-03-30 thomas distclean-generic:
542 b2ce1dae 2024-03-30 thomas -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
543 b2ce1dae 2024-03-30 thomas -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
544 b2ce1dae 2024-03-30 thomas
545 b2ce1dae 2024-03-30 thomas maintainer-clean-generic:
546 b2ce1dae 2024-03-30 thomas @echo "This command is intended for maintainers to use"
547 b2ce1dae 2024-03-30 thomas @echo "it deletes files that may require special tools to rebuild."
548 b2ce1dae 2024-03-30 thomas clean: clean-recursive
549 b2ce1dae 2024-03-30 thomas
550 b2ce1dae 2024-03-30 thomas clean-am: clean-generic mostlyclean-am
551 b2ce1dae 2024-03-30 thomas
552 b2ce1dae 2024-03-30 thomas distclean: distclean-recursive
553 b2ce1dae 2024-03-30 thomas -rm -f Makefile
554 b2ce1dae 2024-03-30 thomas distclean-am: clean-am distclean-generic distclean-tags
555 b2ce1dae 2024-03-30 thomas
556 b2ce1dae 2024-03-30 thomas dvi: dvi-recursive
557 b2ce1dae 2024-03-30 thomas
558 b2ce1dae 2024-03-30 thomas dvi-am:
559 b2ce1dae 2024-03-30 thomas
560 b2ce1dae 2024-03-30 thomas html: html-recursive
561 b2ce1dae 2024-03-30 thomas
562 b2ce1dae 2024-03-30 thomas html-am:
563 b2ce1dae 2024-03-30 thomas
564 b2ce1dae 2024-03-30 thomas info: info-recursive
565 b2ce1dae 2024-03-30 thomas
566 b2ce1dae 2024-03-30 thomas info-am:
567 b2ce1dae 2024-03-30 thomas
568 b2ce1dae 2024-03-30 thomas install-data-am:
569 b2ce1dae 2024-03-30 thomas
570 b2ce1dae 2024-03-30 thomas install-dvi: install-dvi-recursive
571 b2ce1dae 2024-03-30 thomas
572 b2ce1dae 2024-03-30 thomas install-dvi-am:
573 b2ce1dae 2024-03-30 thomas
574 b2ce1dae 2024-03-30 thomas install-exec-am:
575 b2ce1dae 2024-03-30 thomas
576 b2ce1dae 2024-03-30 thomas install-html: install-html-recursive
577 b2ce1dae 2024-03-30 thomas
578 b2ce1dae 2024-03-30 thomas install-html-am:
579 b2ce1dae 2024-03-30 thomas
580 b2ce1dae 2024-03-30 thomas install-info: install-info-recursive
581 b2ce1dae 2024-03-30 thomas
582 b2ce1dae 2024-03-30 thomas install-info-am:
583 b2ce1dae 2024-03-30 thomas
584 b2ce1dae 2024-03-30 thomas install-man:
585 b2ce1dae 2024-03-30 thomas
586 b2ce1dae 2024-03-30 thomas install-pdf: install-pdf-recursive
587 b2ce1dae 2024-03-30 thomas
588 b2ce1dae 2024-03-30 thomas install-pdf-am:
589 b2ce1dae 2024-03-30 thomas
590 b2ce1dae 2024-03-30 thomas install-ps: install-ps-recursive
591 b2ce1dae 2024-03-30 thomas
592 b2ce1dae 2024-03-30 thomas install-ps-am:
593 b2ce1dae 2024-03-30 thomas
594 b2ce1dae 2024-03-30 thomas installcheck-am:
595 b2ce1dae 2024-03-30 thomas
596 b2ce1dae 2024-03-30 thomas maintainer-clean: maintainer-clean-recursive
597 b2ce1dae 2024-03-30 thomas -rm -f Makefile
598 b2ce1dae 2024-03-30 thomas maintainer-clean-am: distclean-am maintainer-clean-generic
599 b2ce1dae 2024-03-30 thomas
600 b2ce1dae 2024-03-30 thomas mostlyclean: mostlyclean-recursive
601 b2ce1dae 2024-03-30 thomas
602 b2ce1dae 2024-03-30 thomas mostlyclean-am: mostlyclean-generic
603 b2ce1dae 2024-03-30 thomas
604 b2ce1dae 2024-03-30 thomas pdf: pdf-recursive
605 b2ce1dae 2024-03-30 thomas
606 b2ce1dae 2024-03-30 thomas pdf-am:
607 b2ce1dae 2024-03-30 thomas
608 b2ce1dae 2024-03-30 thomas ps: ps-recursive
609 b2ce1dae 2024-03-30 thomas
610 b2ce1dae 2024-03-30 thomas ps-am:
611 b2ce1dae 2024-03-30 thomas
612 b2ce1dae 2024-03-30 thomas uninstall-am:
613 b2ce1dae 2024-03-30 thomas
614 b2ce1dae 2024-03-30 thomas .MAKE: $(am__recursive_targets) install-am install-strip
615 b2ce1dae 2024-03-30 thomas
616 b2ce1dae 2024-03-30 thomas .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
617 b2ce1dae 2024-03-30 thomas check-am clean clean-generic cscopelist-am ctags ctags-am \
618 b2ce1dae 2024-03-30 thomas distclean distclean-generic distclean-tags distdir dvi dvi-am \
619 b2ce1dae 2024-03-30 thomas html html-am info info-am install install-am install-data \
620 b2ce1dae 2024-03-30 thomas install-data-am install-dvi install-dvi-am install-exec \
621 b2ce1dae 2024-03-30 thomas install-exec-am install-html install-html-am install-info \
622 b2ce1dae 2024-03-30 thomas install-info-am install-man install-pdf install-pdf-am \
623 b2ce1dae 2024-03-30 thomas install-ps install-ps-am install-strip installcheck \
624 b2ce1dae 2024-03-30 thomas installcheck-am installdirs installdirs-am maintainer-clean \
625 b2ce1dae 2024-03-30 thomas maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
626 b2ce1dae 2024-03-30 thomas pdf-am ps ps-am tags tags-am uninstall uninstall-am
627 b2ce1dae 2024-03-30 thomas
628 b2ce1dae 2024-03-30 thomas .PRECIOUS: Makefile
629 b2ce1dae 2024-03-30 thomas
630 b2ce1dae 2024-03-30 thomas
631 b2ce1dae 2024-03-30 thomas # Tell versions [3.59,3.63) of GNU make to not export all variables.
632 b2ce1dae 2024-03-30 thomas # Otherwise a system limit (for SysV at least) may be exceeded.
633 b2ce1dae 2024-03-30 thomas .NOEXPORT: