Develop and Download Open Source Software

Browse CVS Repository

Contents of /lnl/lnl/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.25 - (show annotations) (download)
Sun Sep 22 09:25:28 2013 UTC (10 years, 6 months ago) by bowkenken
Branch: MAIN
CVS Tags: HEAD
Changes since 1.24: +84 -39 lines
開発再開

1 # Makefile.in generated by automake 1.11.6 from Makefile.am.
2 # @configure_input@
3
4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5 # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6 # Foundation, Inc.
7 # This Makefile.in is free software; the Free Software Foundation
8 # gives unlimited permission to copy and/or distribute it,
9 # with or without modifications, as long as this notice is preserved.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14 # PARTICULAR PURPOSE.
15
16 @SET_MAKE@
17
18 #
19 VPATH = @srcdir@
20 am__make_dryrun = \
21 { \
22 am__dry=no; \
23 case $$MAKEFLAGS in \
24 *\\[\ \ ]*) \
25 echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
26 | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
27 *) \
28 for am__flg in $$MAKEFLAGS; do \
29 case $$am__flg in \
30 *=*|--*) ;; \
31 *n*) am__dry=yes; break;; \
32 esac; \
33 done;; \
34 esac; \
35 test $$am__dry = yes; \
36 }
37 pkgdatadir = $(datadir)/@PACKAGE@
38 pkgincludedir = $(includedir)/@PACKAGE@
39 pkglibdir = $(libdir)/@PACKAGE@
40 pkglibexecdir = $(libexecdir)/@PACKAGE@
41 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
42 install_sh_DATA = $(install_sh) -c -m 644
43 install_sh_PROGRAM = $(install_sh) -c
44 install_sh_SCRIPT = $(install_sh) -c
45 INSTALL_HEADER = $(INSTALL_DATA)
46 transform = $(program_transform_name)
47 NORMAL_INSTALL = :
48 PRE_INSTALL = :
49 POST_INSTALL = :
50 NORMAL_UNINSTALL = :
51 PRE_UNINSTALL = :
52 POST_UNINSTALL = :
53 build_triplet = @build@
54 host_triplet = @host@
55 subdir = .
56 DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
57 $(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \
58 ChangeLog INSTALL NEWS config/config.guess config/config.sub \
59 config/depcomp config/install-sh config/missing \
60 config/mkinstalldirs
61 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
62 am__aclocal_m4_deps = $(top_srcdir)/configure.in
63 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
64 $(ACLOCAL_M4)
65 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
66 configure.lineno config.status.lineno
67 mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
68 CONFIG_HEADER = $(top_builddir)/src/config.h
69 CONFIG_CLEAN_FILES =
70 CONFIG_CLEAN_VPATH_FILES =
71 SOURCES =
72 DIST_SOURCES =
73 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
74 html-recursive info-recursive install-data-recursive \
75 install-dvi-recursive install-exec-recursive \
76 install-html-recursive install-info-recursive \
77 install-pdf-recursive install-ps-recursive install-recursive \
78 installcheck-recursive installdirs-recursive pdf-recursive \
79 ps-recursive uninstall-recursive
80 am__can_run_installinfo = \
81 case $$AM_UPDATE_INFO_DIR in \
82 n|no|NO) false;; \
83 *) (install-info --version) >/dev/null 2>&1;; \
84 esac
85 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
86 distclean-recursive maintainer-clean-recursive
87 AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
88 $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
89 distdir dist dist-all distcheck
90 ETAGS = etags
91 CTAGS = ctags
92 DIST_SUBDIRS = $(SUBDIRS)
93 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
94 distdir = $(PACKAGE)-$(VERSION)
95 top_distdir = $(distdir)
96 am__remove_distdir = \
97 if test -d "$(distdir)"; then \
98 find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
99 && rm -rf "$(distdir)" \
100 || { sleep 5 && rm -rf "$(distdir)"; }; \
101 else :; fi
102 am__relativize = \
103 dir0=`pwd`; \
104 sed_first='s,^\([^/]*\)/.*$$,\1,'; \
105 sed_rest='s,^[^/]*/*,,'; \
106 sed_last='s,^.*/\([^/]*\)$$,\1,'; \
107 sed_butlast='s,/*[^/]*$$,,'; \
108 while test -n "$$dir1"; do \
109 first=`echo "$$dir1" | sed -e "$$sed_first"`; \
110 if test "$$first" != "."; then \
111 if test "$$first" = ".."; then \
112 dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
113 dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
114 else \
115 first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
116 if test "$$first2" = "$$first"; then \
117 dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
118 else \
119 dir2="../$$dir2"; \
120 fi; \
121 dir0="$$dir0"/"$$first"; \
122 fi; \
123 fi; \
124 dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
125 done; \
126 reldir="$$dir2"
127 DIST_ARCHIVES = $(distdir).tar.gz
128 GZIP_ENV = --best
129 distuninstallcheck_listfiles = find . -type f -print
130 am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
131 | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
132 distcleancheck_listfiles = find . -type f -print
133 ACLOCAL = @ACLOCAL@
134 AMTAR = @AMTAR@
135 AUTOCONF = @AUTOCONF@
136 AUTOHEADER = @AUTOHEADER@
137 AUTOMAKE = @AUTOMAKE@
138 AWK = @AWK@
139 CC = @CC@
140 CCDEPMODE = @CCDEPMODE@
141 CFLAGS = @CFLAGS@
142 CPP = @CPP@
143 CPPFLAGS = @CPPFLAGS@
144 CXX = @CXX@
145 CXXDEPMODE = @CXXDEPMODE@
146 CXXFLAGS = @CXXFLAGS@
147 CYGPATH_W = @CYGPATH_W@
148 DEFS = @DEFS@
149 DEPDIR = @DEPDIR@
150 ECHO_C = @ECHO_C@
151 ECHO_N = @ECHO_N@
152 ECHO_T = @ECHO_T@
153 EGREP = @EGREP@
154 EXEEXT = @EXEEXT@
155 GREP = @GREP@
156 INSTALL = @INSTALL@
157 INSTALL_DATA = @INSTALL_DATA@
158 INSTALL_PROGRAM = @INSTALL_PROGRAM@
159 INSTALL_SCRIPT = @INSTALL_SCRIPT@
160 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
161 LDFLAGS = @LDFLAGS@
162 LIBOBJS = @LIBOBJS@
163 LIBS = @LIBS@
164 LN_S = @LN_S@
165 LTLIBOBJS = @LTLIBOBJS@
166 MAKEINFO = @MAKEINFO@
167 MKDIR_P = @MKDIR_P@
168 OBJEXT = @OBJEXT@
169 PACKAGE = @PACKAGE@
170 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
171 PACKAGE_NAME = @PACKAGE_NAME@
172 PACKAGE_STRING = @PACKAGE_STRING@
173 PACKAGE_TARNAME = @PACKAGE_TARNAME@
174 PACKAGE_URL = @PACKAGE_URL@
175 PACKAGE_VERSION = @PACKAGE_VERSION@
176 PATH_SEPARATOR = @PATH_SEPARATOR@
177 SET_MAKE = @SET_MAKE@
178 SHELL = @SHELL@
179 STRIP = @STRIP@
180 VERSION = @VERSION@
181 abs_builddir = @abs_builddir@
182 abs_srcdir = @abs_srcdir@
183 abs_top_builddir = @abs_top_builddir@
184 abs_top_srcdir = @abs_top_srcdir@
185 ac_ct_CC = @ac_ct_CC@
186 ac_ct_CXX = @ac_ct_CXX@
187 am__include = @am__include@
188 am__leading_dot = @am__leading_dot@
189 am__quote = @am__quote@
190 am__tar = @am__tar@
191 am__untar = @am__untar@
192 bindir = @bindir@
193 build = @build@
194 build_alias = @build_alias@
195 build_cpu = @build_cpu@
196 build_os = @build_os@
197 build_vendor = @build_vendor@
198 builddir = @builddir@
199 datadir = @datadir@
200 datarootdir = @datarootdir@
201 docdir = @docdir@
202 dvidir = @dvidir@
203 exec_prefix = @exec_prefix@
204 host = @host@
205 host_alias = @host_alias@
206 host_cpu = @host_cpu@
207 host_os = @host_os@
208 host_vendor = @host_vendor@
209 htmldir = @htmldir@
210 includedir = @includedir@
211 infodir = @infodir@
212 install_sh = @install_sh@
213 libdir = @libdir@
214 libexecdir = @libexecdir@
215 localedir = @localedir@
216 localstatedir = @localstatedir@
217 mandir = @mandir@
218 mkdir_p = @mkdir_p@
219 oldincludedir = @oldincludedir@
220 pdfdir = @pdfdir@
221 prefix = @prefix@
222 program_transform_name = @program_transform_name@
223 psdir = @psdir@
224 sbindir = @sbindir@
225 sharedstatedir = @sharedstatedir@
226 srcdir = @srcdir@
227 sysconfdir = @sysconfdir@
228 target_alias = @target_alias@
229 top_build_prefix = @top_build_prefix@
230 top_builddir = @top_builddir@
231 top_srcdir = @top_srcdir@
232 SUBDIRS = man src
233 EXTRA_DIST = lnl.spec install.sh install-xlnl-mac.sh \
234 README-DOS README-MAC \
235 sh/all-prot sh/amenu-prot sh/chr-prot sh/curs-prot sh/cv-acce \
236 sh/cv-anthology sh/cv-armor sh/cv-class-dflt sh/cv-coin \
237 sh/cv-food sh/cv-inst sh/cv-item sh/cv-light sh/cv-pipe \
238 sh/cv-potion sh/cv-range sh/cv-rare-goods sh/cv-scroll \
239 sh/cv-spell sh/cv-stick sh/cv-tab.awk sh/cv-tobacco sh/cv-wpn \
240 sh/draw-prot sh/dun-prot sh/fight-prot sh/fx-prot sh/gfile-prot \
241 sh/gmain-prot sh/item-prot sh/main-unix-prot sh/make-change-log \
242 sh/make-rpm sh/menu-prot sh/misc-prot sh/mnstr-act-prot \
243 sh/mnstr-prot sh/msg-prot sh/party-prot sh/pet-prot sh/play-rep-prot \
244 sh/prot \
245 sh/rcv-acce sh/rcv-anthology sh/rcv-armor sh/rcv-class-dflt \
246 sh/rcv-coin sh/rcv-food sh/rcv-gen-spell sh/rcv-inst sh/rcv-item \
247 sh/rcv-light sh/rcv-mnstr sh/rcv-pipe sh/rcv-potion sh/rcv-range \
248 sh/rcv-rare-goods sh/rcv-scroll sh/rcv-spell sh/rcv-stick \
249 sh/rcv-tab.awk sh/rcv-tobacco sh/rcv-wpn \
250 sh/replay-prot sh/request-prot \
251 sh/scp-web sh/scp-web-img sh/scp-web-misc sh/spell-prot \
252 sh/tmenu-prot sh/town-prot sh/trap-prot sh/turn-prot \
253 play-lnl/lnl-english play-lnl/lnl-english-mono \
254 play-lnl/lnl-eucjp play-lnl/lnl-eucjp-mono \
255 play-lnl/lnl-utf-8 play-lnl/lnl-utf-8-mono
256
257 all: all-recursive
258
259 .SUFFIXES:
260 am--refresh: Makefile
261 @:
262 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
263 @for dep in $?; do \
264 case '$(am__configure_deps)' in \
265 *$$dep*) \
266 echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
267 $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
268 && exit 0; \
269 exit 1;; \
270 esac; \
271 done; \
272 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
273 $(am__cd) $(top_srcdir) && \
274 $(AUTOMAKE) --gnu Makefile
275 .PRECIOUS: Makefile
276 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
277 @case '$?' in \
278 *config.status*) \
279 echo ' $(SHELL) ./config.status'; \
280 $(SHELL) ./config.status;; \
281 *) \
282 echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
283 cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
284 esac;
285
286 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
287 $(SHELL) ./config.status --recheck
288
289 $(top_srcdir)/configure: $(am__configure_deps)
290 $(am__cd) $(srcdir) && $(AUTOCONF)
291 $(ACLOCAL_M4): $(am__aclocal_m4_deps)
292 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
293 $(am__aclocal_m4_deps):
294
295 # This directory's subdirectories are mostly independent; you can cd
296 # into them and run `make' without going through this Makefile.
297 # To change the values of `make' variables: instead of editing Makefiles,
298 # (1) if the variable is set in `config.status', edit `config.status'
299 # (which will cause the Makefiles to be regenerated when you run `make');
300 # (2) otherwise, pass the desired values on the `make' command line.
301 $(RECURSIVE_TARGETS):
302 @fail= failcom='exit 1'; \
303 for f in x $$MAKEFLAGS; do \
304 case $$f in \
305 *=* | --[!k]*);; \
306 *k*) failcom='fail=yes';; \
307 esac; \
308 done; \
309 dot_seen=no; \
310 target=`echo $@ | sed s/-recursive//`; \
311 list='$(SUBDIRS)'; for subdir in $$list; do \
312 echo "Making $$target in $$subdir"; \
313 if test "$$subdir" = "."; then \
314 dot_seen=yes; \
315 local_target="$$target-am"; \
316 else \
317 local_target="$$target"; \
318 fi; \
319 ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
320 || eval $$failcom; \
321 done; \
322 if test "$$dot_seen" = "no"; then \
323 $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
324 fi; test -z "$$fail"
325
326 $(RECURSIVE_CLEAN_TARGETS):
327 @fail= failcom='exit 1'; \
328 for f in x $$MAKEFLAGS; do \
329 case $$f in \
330 *=* | --[!k]*);; \
331 *k*) failcom='fail=yes';; \
332 esac; \
333 done; \
334 dot_seen=no; \
335 case "$@" in \
336 distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
337 *) list='$(SUBDIRS)' ;; \
338 esac; \
339 rev=''; for subdir in $$list; do \
340 if test "$$subdir" = "."; then :; else \
341 rev="$$subdir $$rev"; \
342 fi; \
343 done; \
344 rev="$$rev ."; \
345 target=`echo $@ | sed s/-recursive//`; \
346 for subdir in $$rev; do \
347 echo "Making $$target in $$subdir"; \
348 if test "$$subdir" = "."; then \
349 local_target="$$target-am"; \
350 else \
351 local_target="$$target"; \
352 fi; \
353 ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
354 || eval $$failcom; \
355 done && test -z "$$fail"
356 tags-recursive:
357 list='$(SUBDIRS)'; for subdir in $$list; do \
358 test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
359 done
360 ctags-recursive:
361 list='$(SUBDIRS)'; for subdir in $$list; do \
362 test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
363 done
364
365 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
366 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
367 unique=`for i in $$list; do \
368 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
369 done | \
370 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
371 END { if (nonempty) { for (i in files) print i; }; }'`; \
372 mkid -fID $$unique
373 tags: TAGS
374
375 TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
376 $(TAGS_FILES) $(LISP)
377 set x; \
378 here=`pwd`; \
379 if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
380 include_option=--etags-include; \
381 empty_fix=.; \
382 else \
383 include_option=--include; \
384 empty_fix=; \
385 fi; \
386 list='$(SUBDIRS)'; for subdir in $$list; do \
387 if test "$$subdir" = .; then :; else \
388 test ! -f $$subdir/TAGS || \
389 set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
390 fi; \
391 done; \
392 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
393 unique=`for i in $$list; do \
394 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
395 done | \
396 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
397 END { if (nonempty) { for (i in files) print i; }; }'`; \
398 shift; \
399 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
400 test -n "$$unique" || unique=$$empty_fix; \
401 if test $$# -gt 0; then \
402 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
403 "$$@" $$unique; \
404 else \
405 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
406 $$unique; \
407 fi; \
408 fi
409 ctags: CTAGS
410 CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
411 $(TAGS_FILES) $(LISP)
412 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
413 unique=`for i in $$list; do \
414 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
415 done | \
416 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
417 END { if (nonempty) { for (i in files) print i; }; }'`; \
418 test -z "$(CTAGS_ARGS)$$unique" \
419 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
420 $$unique
421
422 GTAGS:
423 here=`$(am__cd) $(top_builddir) && pwd` \
424 && $(am__cd) $(top_srcdir) \
425 && gtags -i $(GTAGS_ARGS) "$$here"
426
427 distclean-tags:
428 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
429
430 distdir: $(DISTFILES)
431 $(am__remove_distdir)
432 test -d "$(distdir)" || mkdir "$(distdir)"
433 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
434 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
435 list='$(DISTFILES)'; \
436 dist_files=`for file in $$list; do echo $$file; done | \
437 sed -e "s|^$$srcdirstrip/||;t" \
438 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
439 case $$dist_files in \
440 */*) $(MKDIR_P) `echo "$$dist_files" | \
441 sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
442 sort -u` ;; \
443 esac; \
444 for file in $$dist_files; do \
445 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
446 if test -d $$d/$$file; then \
447 dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
448 if test -d "$(distdir)/$$file"; then \
449 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
450 fi; \
451 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
452 cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
453 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
454 fi; \
455 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
456 else \
457 test -f "$(distdir)/$$file" \
458 || cp -p $$d/$$file "$(distdir)/$$file" \
459 || exit 1; \
460 fi; \
461 done
462 @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
463 if test "$$subdir" = .; then :; else \
464 $(am__make_dryrun) \
465 || test -d "$(distdir)/$$subdir" \
466 || $(MKDIR_P) "$(distdir)/$$subdir" \
467 || exit 1; \
468 dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
469 $(am__relativize); \
470 new_distdir=$$reldir; \
471 dir1=$$subdir; dir2="$(top_distdir)"; \
472 $(am__relativize); \
473 new_top_distdir=$$reldir; \
474 echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
475 echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
476 ($(am__cd) $$subdir && \
477 $(MAKE) $(AM_MAKEFLAGS) \
478 top_distdir="$$new_top_distdir" \
479 distdir="$$new_distdir" \
480 am__remove_distdir=: \
481 am__skip_length_check=: \
482 am__skip_mode_fix=: \
483 distdir) \
484 || exit 1; \
485 fi; \
486 done
487 -test -n "$(am__skip_mode_fix)" \
488 || find "$(distdir)" -type d ! -perm -755 \
489 -exec chmod u+rwx,go+rx {} \; -o \
490 ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
491 ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
492 ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
493 || chmod -R a+r "$(distdir)"
494 dist-gzip: distdir
495 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
496 $(am__remove_distdir)
497
498 dist-bzip2: distdir
499 tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
500 $(am__remove_distdir)
501
502 dist-lzip: distdir
503 tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
504 $(am__remove_distdir)
505
506 dist-lzma: distdir
507 tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
508 $(am__remove_distdir)
509
510 dist-xz: distdir
511 tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
512 $(am__remove_distdir)
513
514 dist-tarZ: distdir
515 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
516 $(am__remove_distdir)
517
518 dist-shar: distdir
519 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
520 $(am__remove_distdir)
521
522 dist-zip: distdir
523 -rm -f $(distdir).zip
524 zip -rq $(distdir).zip $(distdir)
525 $(am__remove_distdir)
526
527 dist dist-all: distdir
528 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
529 $(am__remove_distdir)
530
531 # This target untars the dist file and tries a VPATH configuration. Then
532 # it guarantees that the distribution is self-contained by making another
533 # tarfile.
534 distcheck: dist
535 case '$(DIST_ARCHIVES)' in \
536 *.tar.gz*) \
537 GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
538 *.tar.bz2*) \
539 bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
540 *.tar.lzma*) \
541 lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
542 *.tar.lz*) \
543 lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
544 *.tar.xz*) \
545 xz -dc $(distdir).tar.xz | $(am__untar) ;;\
546 *.tar.Z*) \
547 uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
548 *.shar.gz*) \
549 GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
550 *.zip*) \
551 unzip $(distdir).zip ;;\
552 esac
553 chmod -R a-w $(distdir); chmod u+w $(distdir)
554 mkdir $(distdir)/_build
555 mkdir $(distdir)/_inst
556 chmod a-w $(distdir)
557 test -d $(distdir)/_build || exit 0; \
558 dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
559 && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
560 && am__cwd=`pwd` \
561 && $(am__cd) $(distdir)/_build \
562 && ../configure --srcdir=.. --prefix="$$dc_install_base" \
563 $(AM_DISTCHECK_CONFIGURE_FLAGS) \
564 $(DISTCHECK_CONFIGURE_FLAGS) \
565 && $(MAKE) $(AM_MAKEFLAGS) \
566 && $(MAKE) $(AM_MAKEFLAGS) dvi \
567 && $(MAKE) $(AM_MAKEFLAGS) check \
568 && $(MAKE) $(AM_MAKEFLAGS) install \
569 && $(MAKE) $(AM_MAKEFLAGS) installcheck \
570 && $(MAKE) $(AM_MAKEFLAGS) uninstall \
571 && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
572 distuninstallcheck \
573 && chmod -R a-w "$$dc_install_base" \
574 && ({ \
575 (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
576 && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
577 && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
578 && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
579 distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
580 } || { rm -rf "$$dc_destdir"; exit 1; }) \
581 && rm -rf "$$dc_destdir" \
582 && $(MAKE) $(AM_MAKEFLAGS) dist \
583 && rm -rf $(DIST_ARCHIVES) \
584 && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
585 && cd "$$am__cwd" \
586 || exit 1
587 $(am__remove_distdir)
588 @(echo "$(distdir) archives ready for distribution: "; \
589 list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
590 sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
591 distuninstallcheck:
592 @test -n '$(distuninstallcheck_dir)' || { \
593 echo 'ERROR: trying to run $@ with an empty' \
594 '$$(distuninstallcheck_dir)' >&2; \
595 exit 1; \
596 }; \
597 $(am__cd) '$(distuninstallcheck_dir)' || { \
598 echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
599 exit 1; \
600 }; \
601 test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
602 || { echo "ERROR: files left after uninstall:" ; \
603 if test -n "$(DESTDIR)"; then \
604 echo " (check DESTDIR support)"; \
605 fi ; \
606 $(distuninstallcheck_listfiles) ; \
607 exit 1; } >&2
608 distcleancheck: distclean
609 @if test '$(srcdir)' = . ; then \
610 echo "ERROR: distcleancheck can only run from a VPATH build" ; \
611 exit 1 ; \
612 fi
613 @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
614 || { echo "ERROR: files left in build directory after distclean:" ; \
615 $(distcleancheck_listfiles) ; \
616 exit 1; } >&2
617 check-am: all-am
618 check: check-recursive
619 all-am: Makefile
620 installdirs: installdirs-recursive
621 installdirs-am:
622 install: install-recursive
623 install-exec: install-exec-recursive
624 install-data: install-data-recursive
625 uninstall: uninstall-recursive
626
627 install-am: all-am
628 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
629
630 installcheck: installcheck-recursive
631 install-strip:
632 if test -z '$(STRIP)'; then \
633 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
634 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
635 install; \
636 else \
637 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
638 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
639 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
640 fi
641 mostlyclean-generic:
642
643 clean-generic:
644
645 distclean-generic:
646 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
647 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
648
649 maintainer-clean-generic:
650 @echo "This command is intended for maintainers to use"
651 @echo "it deletes files that may require special tools to rebuild."
652 clean: clean-recursive
653
654 clean-am: clean-generic mostlyclean-am
655
656 distclean: distclean-recursive
657 -rm -f $(am__CONFIG_DISTCLEAN_FILES)
658 -rm -f Makefile
659 distclean-am: clean-am distclean-generic distclean-tags
660
661 dvi: dvi-recursive
662
663 dvi-am:
664
665 html: html-recursive
666
667 html-am:
668
669 info: info-recursive
670
671 info-am:
672
673 install-data-am:
674
675 install-dvi: install-dvi-recursive
676
677 install-dvi-am:
678
679 install-exec-am:
680
681 install-html: install-html-recursive
682
683 install-html-am:
684
685 install-info: install-info-recursive
686
687 install-info-am:
688
689 install-man:
690
691 install-pdf: install-pdf-recursive
692
693 install-pdf-am:
694
695 install-ps: install-ps-recursive
696
697 install-ps-am:
698
699 installcheck-am:
700
701 maintainer-clean: maintainer-clean-recursive
702 -rm -f $(am__CONFIG_DISTCLEAN_FILES)
703 -rm -rf $(top_srcdir)/autom4te.cache
704 -rm -f Makefile
705 maintainer-clean-am: distclean-am maintainer-clean-generic
706
707 mostlyclean: mostlyclean-recursive
708
709 mostlyclean-am: mostlyclean-generic
710
711 pdf: pdf-recursive
712
713 pdf-am:
714
715 ps: ps-recursive
716
717 ps-am:
718
719 uninstall-am:
720
721 .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
722 install-am install-strip tags-recursive
723
724 .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
725 all all-am am--refresh check check-am clean clean-generic \
726 ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
727 dist-lzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \
728 distcheck distclean distclean-generic distclean-tags \
729 distcleancheck distdir distuninstallcheck dvi dvi-am html \
730 html-am info info-am install install-am install-data \
731 install-data-am install-dvi install-dvi-am install-exec \
732 install-exec-am install-html install-html-am install-info \
733 install-info-am install-man install-pdf install-pdf-am \
734 install-ps install-ps-am install-strip installcheck \
735 installcheck-am installdirs installdirs-am maintainer-clean \
736 maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
737 pdf-am ps ps-am tags tags-recursive uninstall uninstall-am
738
739
740 # Tell versions [3.59,3.63) of GNU make to not export all variables.
741 # Otherwise a system limit (for SysV at least) may be exceeded.
742 .NOEXPORT:

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26