1200576Sroberto# Makefile.in generated by automake 1.11 from Makefile.am.
2132451Sroberto# @configure_input@
354359Sroberto
4182007Sroberto# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5200576Sroberto# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
6200576Sroberto# Inc.
754359Sroberto# This Makefile.in is free software; the Free Software Foundation
854359Sroberto# gives unlimited permission to copy and/or distribute it,
954359Sroberto# with or without modifications, as long as this notice is preserved.
1054359Sroberto
1154359Sroberto# This program is distributed in the hope that it will be useful,
1254359Sroberto# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
1354359Sroberto# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
1454359Sroberto# PARTICULAR PURPOSE.
1554359Sroberto
16106163Sroberto@SET_MAKE@
1754359SrobertoVPATH = @srcdir@
1854359Srobertopkgdatadir = $(datadir)/@PACKAGE@
19200576Srobertopkgincludedir = $(includedir)/@PACKAGE@
2054359Srobertopkglibdir = $(libdir)/@PACKAGE@
21200576Srobertopkglibexecdir = $(libexecdir)/@PACKAGE@
22132451Srobertoam__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
23132451Srobertoinstall_sh_DATA = $(install_sh) -c -m 644
24132451Srobertoinstall_sh_PROGRAM = $(install_sh) -c
25132451Srobertoinstall_sh_SCRIPT = $(install_sh) -c
2682498SrobertoINSTALL_HEADER = $(INSTALL_DATA)
27132451Srobertotransform = $(program_transform_name)
2854359SrobertoNORMAL_INSTALL = :
2954359SrobertoPRE_INSTALL = :
3054359SrobertoPOST_INSTALL = :
3154359SrobertoNORMAL_UNINSTALL = :
3254359SrobertoPRE_UNINSTALL = :
3354359SrobertoPOST_UNINSTALL = :
3454359Srobertobuild_triplet = @build@
3554359Srobertohost_triplet = @host@
36182007Srobertosubdir = kernel
37182007SrobertoDIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
38182007SrobertoACLOCAL_M4 = $(top_srcdir)/aclocal.m4
39182007Srobertoam__aclocal_m4_deps = $(top_srcdir)/libopts/m4/libopts.m4 \
40182007Sroberto	$(top_srcdir)/m4/define_dir.m4 \
41182007Sroberto	$(top_srcdir)/m4/hs_ulong_const.m4 \
42182007Sroberto	$(top_srcdir)/m4/os_cflags.m4 $(top_srcdir)/version.m4 \
43182007Sroberto	$(top_srcdir)/configure.ac
44182007Srobertoam__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
45182007Sroberto	$(ACLOCAL_M4)
46182007Srobertomkinstalldirs = $(install_sh) -d
47182007SrobertoCONFIG_HEADER = $(top_builddir)/config.h
48182007SrobertoCONFIG_CLEAN_FILES =
49200576SrobertoCONFIG_CLEAN_VPATH_FILES =
50182007SrobertoSOURCES =
51182007SrobertoDIST_SOURCES =
52182007SrobertoRECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
53182007Sroberto	html-recursive info-recursive install-data-recursive \
54200576Sroberto	install-dvi-recursive install-exec-recursive \
55200576Sroberto	install-html-recursive install-info-recursive \
56200576Sroberto	install-pdf-recursive install-ps-recursive install-recursive \
57200576Sroberto	installcheck-recursive installdirs-recursive pdf-recursive \
58200576Sroberto	ps-recursive uninstall-recursive
59200576SrobertoRECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
60200576Sroberto  distclean-recursive maintainer-clean-recursive
61200576SrobertoAM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
62200576Sroberto	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
63200576Sroberto	distdir
64182007SrobertoETAGS = etags
65182007SrobertoCTAGS = ctags
66182007SrobertoDIST_SUBDIRS = $(SUBDIRS)
67182007SrobertoDISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
68200576Srobertoam__relativize = \
69200576Sroberto  dir0=`pwd`; \
70200576Sroberto  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
71200576Sroberto  sed_rest='s,^[^/]*/*,,'; \
72200576Sroberto  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
73200576Sroberto  sed_butlast='s,/*[^/]*$$,,'; \
74200576Sroberto  while test -n "$$dir1"; do \
75200576Sroberto    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
76200576Sroberto    if test "$$first" != "."; then \
77200576Sroberto      if test "$$first" = ".."; then \
78200576Sroberto        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
79200576Sroberto        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
80200576Sroberto      else \
81200576Sroberto        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
82200576Sroberto        if test "$$first2" = "$$first"; then \
83200576Sroberto          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
84200576Sroberto        else \
85200576Sroberto          dir2="../$$dir2"; \
86200576Sroberto        fi; \
87200576Sroberto        dir0="$$dir0"/"$$first"; \
88200576Sroberto      fi; \
89200576Sroberto    fi; \
90200576Sroberto    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
91200576Sroberto  done; \
92200576Sroberto  reldir="$$dir2"
93132451SrobertoACLOCAL = @ACLOCAL@
9454359SrobertoAMTAR = @AMTAR@
95182007SrobertoAR = @AR@
96132451SrobertoARLIB_DIR = @ARLIB_DIR@
97132451SrobertoAUTOCONF = @AUTOCONF@
98132451SrobertoAUTOHEADER = @AUTOHEADER@
99132451SrobertoAUTOMAKE = @AUTOMAKE@
10054359SrobertoAWK = @AWK@
101182007SrobertoBINSUBDIR = @BINSUBDIR@
10254359SrobertoCC = @CC@
103132451SrobertoCCDEPMODE = @CCDEPMODE@
10454359SrobertoCFLAGS = @CFLAGS@
10554359SrobertoCHUTEST = @CHUTEST@
10654359SrobertoCLKTEST = @CLKTEST@
10754359SrobertoCPP = @CPP@
108132451SrobertoCPPFLAGS = @CPPFLAGS@
109132451SrobertoCYGPATH_W = @CYGPATH_W@
11054359SrobertoDCFD = @DCFD@
111132451SrobertoDEFS = @DEFS@
11256746SrobertoDEPDIR = @DEPDIR@
113182007SrobertoECHO = @ECHO@
114132451SrobertoECHO_C = @ECHO_C@
115132451SrobertoECHO_N = @ECHO_N@
116132451SrobertoECHO_T = @ECHO_T@
11782498SrobertoEF_LIBS = @EF_LIBS@
11882498SrobertoEF_PROGS = @EF_PROGS@
119132451SrobertoEGREP = @EGREP@
120106163SrobertoEXEEXT = @EXEEXT@
121200576SrobertoGREP = @GREP@
122200576SrobertoHAVE_INLINE = @HAVE_INLINE@
123200576SrobertoINSTALL = @INSTALL@
124132451SrobertoINSTALL_DATA = @INSTALL_DATA@
125132451SrobertoINSTALL_PROGRAM = @INSTALL_PROGRAM@
126132451SrobertoINSTALL_SCRIPT = @INSTALL_SCRIPT@
12782498SrobertoINSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
128132451SrobertoLCRYPTO = @LCRYPTO@
12954359SrobertoLDFLAGS = @LDFLAGS@
130132451SrobertoLIBOBJS = @LIBOBJS@
131182007SrobertoLIBOPTS_CFLAGS = @LIBOPTS_CFLAGS@
132182007SrobertoLIBOPTS_DIR = @LIBOPTS_DIR@
133182007SrobertoLIBOPTS_LDADD = @LIBOPTS_LDADD@
13454359SrobertoLIBPARSE = @LIBPARSE@
135132451SrobertoLIBS = @LIBS@
136182007SrobertoLIBTOOL = @LIBTOOL@
13754359SrobertoLN_S = @LN_S@
138200576SrobertoLSCF = @LSCF@
139132451SrobertoLTLIBOBJS = @LTLIBOBJS@
140132451SrobertoMAKEINFO = @MAKEINFO@
14154359SrobertoMAKE_ADJTIMED = @MAKE_ADJTIMED@
142182007SrobertoMAKE_CHECK_LAYOUT = @MAKE_CHECK_LAYOUT@
14354359SrobertoMAKE_CHECK_Y2K = @MAKE_CHECK_Y2K@
144132451SrobertoMAKE_LIBNTPSIM = @MAKE_LIBNTPSIM@
14554359SrobertoMAKE_LIBPARSE = @MAKE_LIBPARSE@
14654359SrobertoMAKE_LIBPARSE_KERNEL = @MAKE_LIBPARSE_KERNEL@
147132451SrobertoMAKE_NTPDSIM = @MAKE_NTPDSIM@
14854359SrobertoMAKE_NTPTIME = @MAKE_NTPTIME@
14954359SrobertoMAKE_PARSEKMODULE = @MAKE_PARSEKMODULE@
15054359SrobertoMAKE_TICKADJ = @MAKE_TICKADJ@
15182498SrobertoMAKE_TIMETRIM = @MAKE_TIMETRIM@
152200576SrobertoMKDIR_P = @MKDIR_P@
153106163SrobertoOBJEXT = @OBJEXT@
15482498SrobertoOPENSSL = @OPENSSL@
15582498SrobertoOPENSSL_INC = @OPENSSL_INC@
15682498SrobertoOPENSSL_LIB = @OPENSSL_LIB@
15754359SrobertoPACKAGE = @PACKAGE@
158132451SrobertoPACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
159132451SrobertoPACKAGE_NAME = @PACKAGE_NAME@
160132451SrobertoPACKAGE_STRING = @PACKAGE_STRING@
161132451SrobertoPACKAGE_TARNAME = @PACKAGE_TARNAME@
162200576SrobertoPACKAGE_URL = @PACKAGE_URL@
163132451SrobertoPACKAGE_VERSION = @PACKAGE_VERSION@
16482498SrobertoPATH_PERL = @PATH_PERL@
165132451SrobertoPATH_SEPARATOR = @PATH_SEPARATOR@
16654359SrobertoPATH_SH = @PATH_SH@
16754359SrobertoPROPDELAY = @PROPDELAY@
16854359SrobertoRANLIB = @RANLIB@
169132451SrobertoREADLINE_LIBS = @READLINE_LIBS@
170132451SrobertoSET_MAKE = @SET_MAKE@
171132451SrobertoSHELL = @SHELL@
172132451SrobertoSTRIP = @STRIP@
17354359SrobertoTESTDCF = @TESTDCF@
17454359SrobertoU = @U@
17554359SrobertoVERSION = @VERSION@
176200576Srobertoabs_builddir = @abs_builddir@
177200576Srobertoabs_srcdir = @abs_srcdir@
178200576Srobertoabs_top_builddir = @abs_top_builddir@
179200576Srobertoabs_top_srcdir = @abs_top_srcdir@
180132451Srobertoac_ct_CC = @ac_ct_CC@
181106163Srobertoam__include = @am__include@
182132451Srobertoam__leading_dot = @am__leading_dot@
183106163Srobertoam__quote = @am__quote@
184182007Srobertoam__tar = @am__tar@
185182007Srobertoam__untar = @am__untar@
186132451Srobertobindir = @bindir@
187132451Srobertobuild = @build@
188132451Srobertobuild_alias = @build_alias@
189132451Srobertobuild_cpu = @build_cpu@
190132451Srobertobuild_os = @build_os@
191132451Srobertobuild_vendor = @build_vendor@
192200576Srobertobuilddir = @builddir@
193132451Srobertodatadir = @datadir@
194200576Srobertodatarootdir = @datarootdir@
195200576Srobertodocdir = @docdir@
196200576Srobertodvidir = @dvidir@
197132451Srobertoexec_prefix = @exec_prefix@
198132451Srobertohost = @host@
199132451Srobertohost_alias = @host_alias@
200132451Srobertohost_cpu = @host_cpu@
201132451Srobertohost_os = @host_os@
202132451Srobertohost_vendor = @host_vendor@
203200576Srobertohtmldir = @htmldir@
204132451Srobertoincludedir = @includedir@
205132451Srobertoinfodir = @infodir@
20656746Srobertoinstall_sh = @install_sh@
207132451Srobertolibdir = @libdir@
208132451Srobertolibexecdir = @libexecdir@
209200576Srobertolocaledir = @localedir@
210132451Srobertolocalstatedir = @localstatedir@
211132451Srobertomandir = @mandir@
212182007Srobertomkdir_p = @mkdir_p@
213132451Srobertooldincludedir = @oldincludedir@
214200576Srobertopdfdir = @pdfdir@
215132451Srobertoprefix = @prefix@
216132451Srobertoprogram_transform_name = @program_transform_name@
217200576Srobertopsdir = @psdir@
218132451Srobertosbindir = @sbindir@
219132451Srobertosharedstatedir = @sharedstatedir@
220200576Srobertosrcdir = @srcdir@
221132451Srobertosubdirs = @subdirs@
222132451Srobertosysconfdir = @sysconfdir@
223132451Srobertotarget_alias = @target_alias@
224200576Srobertotop_build_prefix = @top_build_prefix@
225200576Srobertotop_builddir = @top_builddir@
226200576Srobertotop_srcdir = @top_srcdir@
22754359Sroberto
228132451Sroberto#AUTOMAKE_OPTIONS = ../util/ansi2knr no-dependencies
22954359SrobertoAUTOMAKE_OPTIONS = ../util/ansi2knr
23054359SrobertoSUBDIRS = sys
23154359SrobertoETAGS_ARGS = Makefile.am
23254359SrobertoEXTRA_DIST = chuinit.c clkinit.c tty_chu.c tty_chu_STREAMS.c tty_clk.c tty_clk_STREAMS.c
23382498Srobertoall: all-recursive
23454359Sroberto
23554359Sroberto.SUFFIXES:
236182007Sroberto$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
237182007Sroberto	@for dep in $?; do \
238182007Sroberto	  case '$(am__configure_deps)' in \
239182007Sroberto	    *$$dep*) \
240200576Sroberto	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
241200576Sroberto	        && { if test -f $@; then exit 0; else break; fi; }; \
242182007Sroberto	      exit 1;; \
243182007Sroberto	  esac; \
244182007Sroberto	done; \
245200576Sroberto	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign kernel/Makefile'; \
246200576Sroberto	$(am__cd) $(top_srcdir) && \
247200576Sroberto	  $(AUTOMAKE) --foreign kernel/Makefile
248182007Sroberto.PRECIOUS: Makefile
249182007SrobertoMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
250182007Sroberto	@case '$?' in \
251182007Sroberto	  *config.status*) \
252182007Sroberto	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
253182007Sroberto	  *) \
254182007Sroberto	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
255182007Sroberto	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
256182007Sroberto	esac;
257182007Sroberto
258182007Sroberto$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
259182007Sroberto	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
260182007Sroberto
261182007Sroberto$(top_srcdir)/configure:  $(am__configure_deps)
262182007Sroberto	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
263182007Sroberto$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
264182007Sroberto	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
265200576Sroberto$(am__aclocal_m4_deps):
266182007Sroberto
267182007Srobertomostlyclean-libtool:
268182007Sroberto	-rm -f *.lo
269182007Sroberto
270182007Srobertoclean-libtool:
271182007Sroberto	-rm -rf .libs _libs
272182007Sroberto
27354359Sroberto# This directory's subdirectories are mostly independent; you can cd
27454359Sroberto# into them and run `make' without going through this Makefile.
27554359Sroberto# To change the values of `make' variables: instead of editing Makefiles,
27654359Sroberto# (1) if the variable is set in `config.status', edit `config.status'
27754359Sroberto#     (which will cause the Makefiles to be regenerated when you run `make');
27854359Sroberto# (2) otherwise, pass the desired values on the `make' command line.
279106163Sroberto$(RECURSIVE_TARGETS):
280182007Sroberto	@failcom='exit 1'; \
281182007Sroberto	for f in x $$MAKEFLAGS; do \
282182007Sroberto	  case $$f in \
283182007Sroberto	    *=* | --[!k]*);; \
284182007Sroberto	    *k*) failcom='fail=yes';; \
285182007Sroberto	  esac; \
286182007Sroberto	done; \
28754359Sroberto	dot_seen=no; \
28854359Sroberto	target=`echo $@ | sed s/-recursive//`; \
28954359Sroberto	list='$(SUBDIRS)'; for subdir in $$list; do \
29054359Sroberto	  echo "Making $$target in $$subdir"; \
29154359Sroberto	  if test "$$subdir" = "."; then \
29254359Sroberto	    dot_seen=yes; \
29354359Sroberto	    local_target="$$target-am"; \
29454359Sroberto	  else \
29554359Sroberto	    local_target="$$target"; \
29654359Sroberto	  fi; \
297200576Sroberto	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
298182007Sroberto	  || eval $$failcom; \
29954359Sroberto	done; \
30054359Sroberto	if test "$$dot_seen" = "no"; then \
30154359Sroberto	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
30254359Sroberto	fi; test -z "$$fail"
30354359Sroberto
304200576Sroberto$(RECURSIVE_CLEAN_TARGETS):
305182007Sroberto	@failcom='exit 1'; \
306182007Sroberto	for f in x $$MAKEFLAGS; do \
307182007Sroberto	  case $$f in \
308182007Sroberto	    *=* | --[!k]*);; \
309182007Sroberto	    *k*) failcom='fail=yes';; \
310182007Sroberto	  esac; \
311182007Sroberto	done; \
31254359Sroberto	dot_seen=no; \
31382498Sroberto	case "$@" in \
31482498Sroberto	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
31582498Sroberto	  *) list='$(SUBDIRS)' ;; \
31682498Sroberto	esac; \
31782498Sroberto	rev=''; for subdir in $$list; do \
31882498Sroberto	  if test "$$subdir" = "."; then :; else \
31982498Sroberto	    rev="$$subdir $$rev"; \
32082498Sroberto	  fi; \
32154359Sroberto	done; \
32282498Sroberto	rev="$$rev ."; \
32354359Sroberto	target=`echo $@ | sed s/-recursive//`; \
32454359Sroberto	for subdir in $$rev; do \
32554359Sroberto	  echo "Making $$target in $$subdir"; \
32654359Sroberto	  if test "$$subdir" = "."; then \
32754359Sroberto	    local_target="$$target-am"; \
32854359Sroberto	  else \
32954359Sroberto	    local_target="$$target"; \
33054359Sroberto	  fi; \
331200576Sroberto	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
332182007Sroberto	  || eval $$failcom; \
33354359Sroberto	done && test -z "$$fail"
33454359Srobertotags-recursive:
33554359Sroberto	list='$(SUBDIRS)'; for subdir in $$list; do \
336200576Sroberto	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
33754359Sroberto	done
338132451Srobertoctags-recursive:
339132451Sroberto	list='$(SUBDIRS)'; for subdir in $$list; do \
340200576Sroberto	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
341132451Sroberto	done
34254359Sroberto
34356746SrobertoID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
344132451Sroberto	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
34556746Sroberto	unique=`for i in $$list; do \
34656746Sroberto	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
34756746Sroberto	  done | \
348200576Sroberto	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
349200576Sroberto	      END { if (nonempty) { for (i in files) print i; }; }'`; \
350132451Sroberto	mkid -fID $$unique
351182007Srobertotags: TAGS
35254359Sroberto
35356746SrobertoTAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
35456746Sroberto		$(TAGS_FILES) $(LISP)
355200576Sroberto	set x; \
35654359Sroberto	here=`pwd`; \
357182007Sroberto	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
358132451Sroberto	  include_option=--etags-include; \
359182007Sroberto	  empty_fix=.; \
360132451Sroberto	else \
361132451Sroberto	  include_option=--include; \
362182007Sroberto	  empty_fix=; \
363132451Sroberto	fi; \
36454359Sroberto	list='$(SUBDIRS)'; for subdir in $$list; do \
365106163Sroberto	  if test "$$subdir" = .; then :; else \
366182007Sroberto	    test ! -f $$subdir/TAGS || \
367200576Sroberto	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
368106163Sroberto	  fi; \
36954359Sroberto	done; \
370132451Sroberto	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
37156746Sroberto	unique=`for i in $$list; do \
37256746Sroberto	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
37356746Sroberto	  done | \
374200576Sroberto	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
375200576Sroberto	      END { if (nonempty) { for (i in files) print i; }; }'`; \
376200576Sroberto	shift; \
377200576Sroberto	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
378182007Sroberto	  test -n "$$unique" || unique=$$empty_fix; \
379200576Sroberto	  if test $$# -gt 0; then \
380200576Sroberto	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
381200576Sroberto	      "$$@" $$unique; \
382200576Sroberto	  else \
383200576Sroberto	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
384200576Sroberto	      $$unique; \
385200576Sroberto	  fi; \
386182007Sroberto	fi
387132451Srobertoctags: CTAGS
388132451SrobertoCTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
389132451Sroberto		$(TAGS_FILES) $(LISP)
390132451Sroberto	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
391132451Sroberto	unique=`for i in $$list; do \
392132451Sroberto	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
393132451Sroberto	  done | \
394200576Sroberto	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
395200576Sroberto	      END { if (nonempty) { for (i in files) print i; }; }'`; \
396200576Sroberto	test -z "$(CTAGS_ARGS)$$unique" \
397132451Sroberto	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
398200576Sroberto	     $$unique
399132451Sroberto
40082498SrobertoGTAGS:
401132451Sroberto	here=`$(am__cd) $(top_builddir) && pwd` \
402200576Sroberto	  && $(am__cd) $(top_srcdir) \
403200576Sroberto	  && gtags -i $(GTAGS_ARGS) "$$here"
40454359Sroberto
40554359Srobertodistclean-tags:
406132451Sroberto	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
40754359Sroberto
40854359Srobertodistdir: $(DISTFILES)
409200576Sroberto	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
410200576Sroberto	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
411200576Sroberto	list='$(DISTFILES)'; \
412200576Sroberto	  dist_files=`for file in $$list; do echo $$file; done | \
413200576Sroberto	  sed -e "s|^$$srcdirstrip/||;t" \
414200576Sroberto	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
415200576Sroberto	case $$dist_files in \
416200576Sroberto	  */*) $(MKDIR_P) `echo "$$dist_files" | \
417200576Sroberto			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
418200576Sroberto			   sort -u` ;; \
419200576Sroberto	esac; \
420200576Sroberto	for file in $$dist_files; do \
421132451Sroberto	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
42254359Sroberto	  if test -d $$d/$$file; then \
423200576Sroberto	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
424200576Sroberto	    if test -d "$(distdir)/$$file"; then \
425200576Sroberto	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
426200576Sroberto	    fi; \
427132451Sroberto	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
428200576Sroberto	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
429200576Sroberto	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
430132451Sroberto	    fi; \
431200576Sroberto	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
43254359Sroberto	  else \
433200576Sroberto	    test -f "$(distdir)/$$file" \
434200576Sroberto	    || cp -p $$d/$$file "$(distdir)/$$file" \
43582498Sroberto	    || exit 1; \
43654359Sroberto	  fi; \
43754359Sroberto	done
438200576Sroberto	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
43954359Sroberto	  if test "$$subdir" = .; then :; else \
440182007Sroberto	    test -d "$(distdir)/$$subdir" \
441200576Sroberto	    || $(MKDIR_P) "$(distdir)/$$subdir" \
44254359Sroberto	    || exit 1; \
443200576Sroberto	  fi; \
444200576Sroberto	done
445200576Sroberto	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
446200576Sroberto	  if test "$$subdir" = .; then :; else \
447200576Sroberto	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
448200576Sroberto	    $(am__relativize); \
449200576Sroberto	    new_distdir=$$reldir; \
450200576Sroberto	    dir1=$$subdir; dir2="$(top_distdir)"; \
451200576Sroberto	    $(am__relativize); \
452200576Sroberto	    new_top_distdir=$$reldir; \
453200576Sroberto	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
454200576Sroberto	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
455200576Sroberto	    ($(am__cd) $$subdir && \
45682498Sroberto	      $(MAKE) $(AM_MAKEFLAGS) \
457200576Sroberto	        top_distdir="$$new_top_distdir" \
458200576Sroberto	        distdir="$$new_distdir" \
459200576Sroberto		am__remove_distdir=: \
460200576Sroberto		am__skip_length_check=: \
461200576Sroberto		am__skip_mode_fix=: \
46282498Sroberto	        distdir) \
46354359Sroberto	      || exit 1; \
46454359Sroberto	  fi; \
46554359Sroberto	done
46654359Srobertocheck-am: all-am
46754359Srobertocheck: check-recursive
46882498Srobertoall-am: Makefile
46982498Srobertoinstalldirs: installdirs-recursive
47082498Srobertoinstalldirs-am:
47182498Srobertoinstall: install-recursive
47254359Srobertoinstall-exec: install-exec-recursive
47354359Srobertoinstall-data: install-data-recursive
47482498Srobertouninstall: uninstall-recursive
47554359Sroberto
47654359Srobertoinstall-am: all-am
47754359Sroberto	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
47882498Sroberto
47982498Srobertoinstallcheck: installcheck-recursive
48054359Srobertoinstall-strip:
48182498Sroberto	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
482182007Sroberto	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
483106163Sroberto	  `test -z '$(STRIP)' || \
484106163Sroberto	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
48554359Srobertomostlyclean-generic:
48654359Sroberto
48754359Srobertoclean-generic:
48854359Sroberto
48954359Srobertodistclean-generic:
490182007Sroberto	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
491200576Sroberto	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
49254359Sroberto
49354359Srobertomaintainer-clean-generic:
49482498Sroberto	@echo "This command is intended for maintainers to use"
49582498Sroberto	@echo "it deletes files that may require special tools to rebuild."
49682498Srobertoclean: clean-recursive
49754359Sroberto
498182007Srobertoclean-am: clean-generic clean-libtool mostlyclean-am
49954359Sroberto
50082498Srobertodistclean: distclean-recursive
501132451Sroberto	-rm -f Makefile
502200576Srobertodistclean-am: clean-am distclean-generic distclean-tags
50354359Sroberto
504106163Srobertodvi: dvi-recursive
50554359Sroberto
50682498Srobertodvi-am:
50754359Sroberto
508182007Srobertohtml: html-recursive
509182007Sroberto
510200576Srobertohtml-am:
511200576Sroberto
512106163Srobertoinfo: info-recursive
51354359Sroberto
51482498Srobertoinfo-am:
51582498Sroberto
51682498Srobertoinstall-data-am:
51782498Sroberto
518200576Srobertoinstall-dvi: install-dvi-recursive
519200576Sroberto
520200576Srobertoinstall-dvi-am:
521200576Sroberto
52282498Srobertoinstall-exec-am:
52382498Sroberto
524200576Srobertoinstall-html: install-html-recursive
525200576Sroberto
526200576Srobertoinstall-html-am:
527200576Sroberto
528106163Srobertoinstall-info: install-info-recursive
52982498Sroberto
530200576Srobertoinstall-info-am:
531200576Sroberto
53282498Srobertoinstall-man:
53382498Sroberto
534200576Srobertoinstall-pdf: install-pdf-recursive
535200576Sroberto
536200576Srobertoinstall-pdf-am:
537200576Sroberto
538200576Srobertoinstall-ps: install-ps-recursive
539200576Sroberto
540200576Srobertoinstall-ps-am:
541200576Sroberto
54282498Srobertoinstallcheck-am:
54382498Sroberto
54454359Srobertomaintainer-clean: maintainer-clean-recursive
545132451Sroberto	-rm -f Makefile
54682498Srobertomaintainer-clean-am: distclean-am maintainer-clean-generic
54754359Sroberto
54882498Srobertomostlyclean: mostlyclean-recursive
54954359Sroberto
550182007Srobertomostlyclean-am: mostlyclean-generic mostlyclean-libtool
55182498Sroberto
552132451Srobertopdf: pdf-recursive
553132451Sroberto
554132451Srobertopdf-am:
555132451Sroberto
556132451Srobertops: ps-recursive
557132451Sroberto
558132451Srobertops-am:
559132451Sroberto
560200576Srobertouninstall-am:
561106163Sroberto
562200576Sroberto.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
563200576Sroberto	install-am install-strip tags-recursive
564106163Sroberto
565200576Sroberto.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
566200576Sroberto	all all-am check check-am clean clean-generic clean-libtool \
567200576Sroberto	ctags ctags-recursive distclean distclean-generic \
568200576Sroberto	distclean-libtool distclean-tags distdir dvi dvi-am html \
569182007Sroberto	html-am info info-am install install-am install-data \
570200576Sroberto	install-data-am install-dvi install-dvi-am install-exec \
571200576Sroberto	install-exec-am install-html install-html-am install-info \
572200576Sroberto	install-info-am install-man install-pdf install-pdf-am \
573200576Sroberto	install-ps install-ps-am install-strip installcheck \
574182007Sroberto	installcheck-am installdirs installdirs-am maintainer-clean \
575200576Sroberto	maintainer-clean-generic mostlyclean mostlyclean-generic \
576200576Sroberto	mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
577200576Sroberto	uninstall uninstall-am
57882498Sroberto
579200576Sroberto
58054359Sroberto# Tell versions [3.59,3.63) of GNU make to not export all variables.
58154359Sroberto# Otherwise a system limit (for SysV at least) may be exceeded.
58254359Sroberto.NOEXPORT:
583