Annotation of embedaddon/quagga/vtysh/Makefile.in, revision 1.1.1.2
1.1.1.2 ! misho 1: # Makefile.in generated by automake 1.11.2 from Makefile.am.
1.1 misho 2: # @configure_input@
3:
4: # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1.1.1.2 ! misho 5: # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
! 6: # Foundation, Inc.
1.1 misho 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:
20: VPATH = @srcdir@
21: pkgdatadir = $(datadir)/@PACKAGE@
22: pkgincludedir = $(includedir)/@PACKAGE@
23: pkglibdir = $(libdir)/@PACKAGE@
24: pkglibexecdir = $(libexecdir)/@PACKAGE@
25: am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
26: install_sh_DATA = $(install_sh) -c -m 644
27: install_sh_PROGRAM = $(install_sh) -c
28: install_sh_SCRIPT = $(install_sh) -c
29: INSTALL_HEADER = $(INSTALL_DATA)
30: transform = $(program_transform_name)
31: NORMAL_INSTALL = :
32: PRE_INSTALL = :
33: POST_INSTALL = :
34: NORMAL_UNINSTALL = :
35: PRE_UNINSTALL = :
36: POST_UNINSTALL = :
37: build_triplet = @build@
38: host_triplet = @host@
39: target_triplet = @target@
40: bin_PROGRAMS = vtysh$(EXEEXT)
41: subdir = vtysh
42: DIST_COMMON = $(dist_examples_DATA) $(noinst_HEADERS) \
43: $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
44: $(srcdir)/extract.pl.in
45: ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
1.1.1.2 ! misho 46: am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
! 47: $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
! 48: $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
! 49: $(top_srcdir)/configure.ac
1.1 misho 50: am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
51: $(ACLOCAL_M4)
52: mkinstalldirs = $(install_sh) -d
53: CONFIG_HEADER = $(top_builddir)/config.h
54: CONFIG_CLEAN_FILES = extract.pl
55: CONFIG_CLEAN_VPATH_FILES =
56: am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(examplesdir)"
57: PROGRAMS = $(bin_PROGRAMS)
58: am_vtysh_OBJECTS = vtysh_main.$(OBJEXT) vtysh.$(OBJEXT) \
59: vtysh_user.$(OBJEXT) vtysh_config.$(OBJEXT)
60: nodist_vtysh_OBJECTS = vtysh_cmd.$(OBJEXT)
61: vtysh_OBJECTS = $(am_vtysh_OBJECTS) $(nodist_vtysh_OBJECTS)
62: vtysh_DEPENDENCIES = ../lib/libzebra.la
63: DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
64: depcomp = $(SHELL) $(top_srcdir)/depcomp
65: am__depfiles_maybe = depfiles
66: am__mv = mv -f
67: COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
68: $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
69: LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
70: --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
71: $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
72: CCLD = $(CC)
73: LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
74: --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
75: $(LDFLAGS) -o $@
76: SOURCES = $(vtysh_SOURCES) $(nodist_vtysh_SOURCES)
77: DIST_SOURCES = $(vtysh_SOURCES)
78: am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
79: am__vpath_adj = case $$p in \
80: $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
81: *) f=$$p;; \
82: esac;
83: am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
84: am__install_max = 40
85: am__nobase_strip_setup = \
86: srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
87: am__nobase_strip = \
88: for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
89: am__nobase_list = $(am__nobase_strip_setup); \
90: for p in $$list; do echo "$$p $$p"; done | \
91: sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
92: $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
93: if (++n[$$2] == $(am__install_max)) \
94: { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
95: END { for (dir in files) print dir, files[dir] }'
96: am__base_list = \
97: sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
98: sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
1.1.1.2 ! misho 99: am__uninstall_files_from_dir = { \
! 100: test -z "$$files" \
! 101: || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
! 102: || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
! 103: $(am__cd) "$$dir" && rm -f $$files; }; \
! 104: }
1.1 misho 105: DATA = $(dist_examples_DATA)
106: HEADERS = $(noinst_HEADERS)
107: ETAGS = etags
108: CTAGS = ctags
109: DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
110: ACLOCAL = @ACLOCAL@
111: AMTAR = @AMTAR@
112: AR = @AR@
113: AUTOCONF = @AUTOCONF@
114: AUTOHEADER = @AUTOHEADER@
115: AUTOMAKE = @AUTOMAKE@
116: AWK = @AWK@
117: BGPD = @BGPD@
118: CC = @CC@
119: CCDEPMODE = @CCDEPMODE@
120: CFLAGS = @CFLAGS@
121: CONFDATE = @CONFDATE@
122: CPP = @CPP@
123: CPPFLAGS = @CPPFLAGS@
124: CURSES = @CURSES@
125: CYGPATH_W = @CYGPATH_W@
126: DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\"
127: DEPDIR = @DEPDIR@
128: DLLTOOL = @DLLTOOL@
129: DOC = @DOC@
130: DSYMUTIL = @DSYMUTIL@
131: DUMPBIN = @DUMPBIN@
132: ECHO_C = @ECHO_C@
133: ECHO_N = @ECHO_N@
134: ECHO_T = @ECHO_T@
135: EGREP = @EGREP@
136: EXEEXT = @EXEEXT@
137: FGREP = @FGREP@
138: GAWK = @GAWK@
139: GREP = @GREP@
140: HAVE_LIBPCREPOSIX = @HAVE_LIBPCREPOSIX@
141: IF_METHOD = @IF_METHOD@
142: IF_PROC = @IF_PROC@
143: INCLUDES = @INCLUDES@ -I$(top_srcdir) -I$(top_srcdir)/lib
144: INSTALL = @INSTALL@
145: INSTALL_DATA = @INSTALL_DATA@
146: INSTALL_PROGRAM = @INSTALL_PROGRAM@
147: INSTALL_SCRIPT = @INSTALL_SCRIPT@
148: INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
149: IOCTL_METHOD = @IOCTL_METHOD@
150: IPFORWARD = @IPFORWARD@
151: ISISD = @ISISD@
152: ISIS_TOPOLOGY_DIR = @ISIS_TOPOLOGY_DIR@
153: ISIS_TOPOLOGY_INCLUDES = @ISIS_TOPOLOGY_INCLUDES@
154: ISIS_TOPOLOGY_LIB = @ISIS_TOPOLOGY_LIB@
155: KERNEL_METHOD = @KERNEL_METHOD@
156: LD = @LD@
157: LDFLAGS = @LDFLAGS@
158: LIBCAP = @LIBCAP@
159: LIBM = @LIBM@
160: LIBOBJS = @LIBOBJS@
161: LIBPAM = @LIBPAM@
162: LIBREADLINE = @LIBREADLINE@
163: LIBS = @LIBS@ @CURSES@ @LIBPAM@
164: LIBTOOL = @LIBTOOL@
165: LIB_IPV6 = @LIB_IPV6@
166: LIB_REGEX = @LIB_REGEX@
167: LIPO = @LIPO@
168: LN_S = @LN_S@
169: LTLIBOBJS = @LTLIBOBJS@
170: MAKEINFO = @MAKEINFO@
171: MANIFEST_TOOL = @MANIFEST_TOOL@
172: MKDIR_P = @MKDIR_P@
173: MULTIPATH_NUM = @MULTIPATH_NUM@
174: NM = @NM@
175: NMEDIT = @NMEDIT@
176: OBJDUMP = @OBJDUMP@
177: OBJEXT = @OBJEXT@
178: OSPF6D = @OSPF6D@
179: OSPFAPI = @OSPFAPI@
180: OSPFCLIENT = @OSPFCLIENT@
181: OSPFD = @OSPFD@
182: OTHER_METHOD = @OTHER_METHOD@
183: OTOOL = @OTOOL@
184: OTOOL64 = @OTOOL64@
185: PACKAGE = @PACKAGE@
186: PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
187: PACKAGE_NAME = @PACKAGE_NAME@
188: PACKAGE_STRING = @PACKAGE_STRING@
189: PACKAGE_TARNAME = @PACKAGE_TARNAME@
190: PACKAGE_URL = @PACKAGE_URL@
191: PACKAGE_VERSION = @PACKAGE_VERSION@
192: PATH_SEPARATOR = @PATH_SEPARATOR@
193: PERL = @PERL@
194: PICFLAGS = @PICFLAGS@
195: PILDFLAGS = @PILDFLAGS@
196: RANLIB = @RANLIB@
197: RIPD = @RIPD@
198: RIPNGD = @RIPNGD@
199: RTREAD_METHOD = @RTREAD_METHOD@
200: RT_METHOD = @RT_METHOD@
201: SED = @SED@
202: SET_MAKE = @SET_MAKE@
203: SHELL = @SHELL@
204: SNMP_INCLUDES = @SNMP_INCLUDES@
205: SOLARIS = @SOLARIS@
206: STRIP = @STRIP@
207: VERSION = @VERSION@
208: VTYSH = @VTYSH@
209: WATCHQUAGGA = @WATCHQUAGGA@
210: ZEBRA = @ZEBRA@
211: abs_builddir = @abs_builddir@
212: abs_srcdir = @abs_srcdir@
213: abs_top_builddir = @abs_top_builddir@
214: abs_top_srcdir = @abs_top_srcdir@
215: ac_ct_AR = @ac_ct_AR@
216: ac_ct_CC = @ac_ct_CC@
217: ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
218: am__include = @am__include@
219: am__leading_dot = @am__leading_dot@
220: am__quote = @am__quote@
221: am__tar = @am__tar@
222: am__untar = @am__untar@
223: bindir = @bindir@
224: build = @build@
225: build_alias = @build_alias@
226: build_cpu = @build_cpu@
227: build_os = @build_os@
228: build_vendor = @build_vendor@
229: builddir = @builddir@
230: datadir = @datadir@
231: datarootdir = @datarootdir@
232: docdir = @docdir@
233: dvidir = @dvidir@
234: enable_group = @enable_group@
235: enable_user = @enable_user@
236: enable_vty_group = @enable_vty_group@
237: exampledir = @exampledir@
238: exec_prefix = @exec_prefix@
239: host = @host@
240: host_alias = @host_alias@
241: host_cpu = @host_cpu@
242: host_os = @host_os@
243: host_vendor = @host_vendor@
244: htmldir = @htmldir@
245: includedir = @includedir@
246: infodir = @infodir@
247: install_sh = @install_sh@
248: libdir = @libdir@
249: libexecdir = @libexecdir@
250: localedir = @localedir@
251: localstatedir = @localstatedir@
252: mandir = @mandir@
253: mkdir_p = @mkdir_p@
254: oldincludedir = @oldincludedir@
255: pdfdir = @pdfdir@
256: pkgsrcdir = @pkgsrcdir@
257: pkgsrcrcdir = @pkgsrcrcdir@
258: prefix = @prefix@
259: program_transform_name = @program_transform_name@
260: psdir = @psdir@
261: quagga_statedir = @quagga_statedir@
262: sbindir = @sbindir@
263: sharedstatedir = @sharedstatedir@
264: srcdir = @srcdir@
265: sysconfdir = @sysconfdir@
266: target = @target@
267: target_alias = @target_alias@
268: target_cpu = @target_cpu@
269: target_os = @target_os@
270: target_vendor = @target_vendor@
271: top_build_prefix = @top_build_prefix@
272: top_builddir = @top_builddir@
273: top_srcdir = @top_srcdir@
274: AM_CFLAGS = $(PICFLAGS)
275: AM_LDFLAGS = $(PILDFLAGS)
276: vtysh_SOURCES = vtysh_main.c vtysh.c vtysh_user.c vtysh_config.c
277: nodist_vtysh_SOURCES = vtysh_cmd.c
278: CLEANFILES = vtysh_cmd.c
279: noinst_HEADERS = vtysh.h vtysh_user.h
280: vtysh_LDADD = ../lib/libzebra.la @LIBCAP@ @LIBREADLINE@
281: examplesdir = $(exampledir)
282: dist_examples_DATA = vtysh.conf.sample
283: EXTRA_DIST = extract.pl
284: vtysh_cmd_FILES = $(top_srcdir)/bgpd/*.c $(top_srcdir)/isisd/*.c \
285: $(top_srcdir)/ospfd/*.c $(top_srcdir)/ospf6d/*.c \
286: $(top_srcdir)/ripd/*.c $(top_srcdir)/ripngd/*.c \
287: $(top_srcdir)/lib/keychain.c $(top_srcdir)/lib/routemap.c \
288: $(top_srcdir)/lib/filter.c $(top_srcdir)/lib/plist.c \
289: $(top_srcdir)/lib/distribute.c $(top_srcdir)/lib/if_rmap.c \
290: $(top_srcdir)/lib/vty.c $(top_srcdir)/zebra/debug.c \
291: $(top_srcdir)/zebra/interface.c \
292: $(top_srcdir)/zebra/irdp_interface.c \
293: $(top_srcdir)/zebra/rtadv.c $(top_srcdir)/zebra/zebra_vty.c \
294: $(top_srcdir)/zebra/zserv.c $(top_srcdir)/zebra/router-id.c \
295: $(top_srcdir)/zebra/zebra_routemap.c
296:
297: all: all-am
298:
299: .SUFFIXES:
300: .SUFFIXES: .c .lo .o .obj
301: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
302: @for dep in $?; do \
303: case '$(am__configure_deps)' in \
304: *$$dep*) \
305: ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
306: && { if test -f $@; then exit 0; else break; fi; }; \
307: exit 1;; \
308: esac; \
309: done; \
310: echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu vtysh/Makefile'; \
311: $(am__cd) $(top_srcdir) && \
312: $(AUTOMAKE) --gnu vtysh/Makefile
313: .PRECIOUS: Makefile
314: Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
315: @case '$?' in \
316: *config.status*) \
317: cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
318: *) \
319: echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
320: cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
321: esac;
322:
323: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
324: cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
325:
326: $(top_srcdir)/configure: $(am__configure_deps)
327: cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
328: $(ACLOCAL_M4): $(am__aclocal_m4_deps)
329: cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
330: $(am__aclocal_m4_deps):
331: extract.pl: $(top_builddir)/config.status $(srcdir)/extract.pl.in
332: cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
333: install-binPROGRAMS: $(bin_PROGRAMS)
334: @$(NORMAL_INSTALL)
335: test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
336: @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
337: for p in $$list; do echo "$$p $$p"; done | \
338: sed 's/$(EXEEXT)$$//' | \
339: while read p p1; do if test -f $$p || test -f $$p1; \
340: then echo "$$p"; echo "$$p"; else :; fi; \
341: done | \
342: sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
343: -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
344: sed 'N;N;N;s,\n, ,g' | \
345: $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
346: { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
347: if ($$2 == $$4) files[d] = files[d] " " $$1; \
348: else { print "f", $$3 "/" $$4, $$1; } } \
349: END { for (d in files) print "f", d, files[d] }' | \
350: while read type dir files; do \
351: if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
352: test -z "$$files" || { \
353: echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
354: $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
355: } \
356: ; done
357:
358: uninstall-binPROGRAMS:
359: @$(NORMAL_UNINSTALL)
360: @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
361: files=`for p in $$list; do echo "$$p"; done | \
362: sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
363: -e 's/$$/$(EXEEXT)/' `; \
364: test -n "$$list" || exit 0; \
365: echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
366: cd "$(DESTDIR)$(bindir)" && rm -f $$files
367:
368: clean-binPROGRAMS:
369: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
370: echo " rm -f" $$list; \
371: rm -f $$list || exit $$?; \
372: test -n "$(EXEEXT)" || exit 0; \
373: list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
374: echo " rm -f" $$list; \
375: rm -f $$list
376: vtysh$(EXEEXT): $(vtysh_OBJECTS) $(vtysh_DEPENDENCIES)
377: @rm -f vtysh$(EXEEXT)
378: $(LINK) $(vtysh_OBJECTS) $(vtysh_LDADD) $(LIBS)
379:
380: mostlyclean-compile:
381: -rm -f *.$(OBJEXT)
382:
383: distclean-compile:
384: -rm -f *.tab.c
385:
386: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vtysh.Po@am__quote@
387: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vtysh_cmd.Po@am__quote@
388: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vtysh_config.Po@am__quote@
389: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vtysh_main.Po@am__quote@
390: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vtysh_user.Po@am__quote@
391:
392: .c.o:
393: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
394: @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
395: @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
396: @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
397: @am__fastdepCC_FALSE@ $(COMPILE) -c $<
398:
399: .c.obj:
400: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
401: @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
402: @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
403: @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
404: @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
405:
406: .c.lo:
407: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
408: @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
409: @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
410: @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
411: @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
412:
413: mostlyclean-libtool:
414: -rm -f *.lo
415:
416: clean-libtool:
417: -rm -rf .libs _libs
418: install-dist_examplesDATA: $(dist_examples_DATA)
419: @$(NORMAL_INSTALL)
420: test -z "$(examplesdir)" || $(MKDIR_P) "$(DESTDIR)$(examplesdir)"
421: @list='$(dist_examples_DATA)'; test -n "$(examplesdir)" || list=; \
422: for p in $$list; do \
423: if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
424: echo "$$d$$p"; \
425: done | $(am__base_list) | \
426: while read files; do \
427: echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(examplesdir)'"; \
428: $(INSTALL_DATA) $$files "$(DESTDIR)$(examplesdir)" || exit $$?; \
429: done
430:
431: uninstall-dist_examplesDATA:
432: @$(NORMAL_UNINSTALL)
433: @list='$(dist_examples_DATA)'; test -n "$(examplesdir)" || list=; \
434: files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1.1.1.2 ! misho 435: dir='$(DESTDIR)$(examplesdir)'; $(am__uninstall_files_from_dir)
1.1 misho 436:
437: ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
438: list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
439: unique=`for i in $$list; do \
440: if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
441: done | \
442: $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
443: END { if (nonempty) { for (i in files) print i; }; }'`; \
444: mkid -fID $$unique
445: tags: TAGS
446:
447: TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
448: $(TAGS_FILES) $(LISP)
449: set x; \
450: here=`pwd`; \
451: list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
452: unique=`for i in $$list; do \
453: if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
454: done | \
455: $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
456: END { if (nonempty) { for (i in files) print i; }; }'`; \
457: shift; \
458: if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
459: test -n "$$unique" || unique=$$empty_fix; \
460: if test $$# -gt 0; then \
461: $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
462: "$$@" $$unique; \
463: else \
464: $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
465: $$unique; \
466: fi; \
467: fi
468: ctags: CTAGS
469: CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
470: $(TAGS_FILES) $(LISP)
471: list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
472: unique=`for i in $$list; do \
473: if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
474: done | \
475: $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
476: END { if (nonempty) { for (i in files) print i; }; }'`; \
477: test -z "$(CTAGS_ARGS)$$unique" \
478: || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
479: $$unique
480:
481: GTAGS:
482: here=`$(am__cd) $(top_builddir) && pwd` \
483: && $(am__cd) $(top_srcdir) \
484: && gtags -i $(GTAGS_ARGS) "$$here"
485:
486: distclean-tags:
487: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
488:
489: distdir: $(DISTFILES)
490: @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
491: topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
492: list='$(DISTFILES)'; \
493: dist_files=`for file in $$list; do echo $$file; done | \
494: sed -e "s|^$$srcdirstrip/||;t" \
495: -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
496: case $$dist_files in \
497: */*) $(MKDIR_P) `echo "$$dist_files" | \
498: sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
499: sort -u` ;; \
500: esac; \
501: for file in $$dist_files; do \
502: if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
503: if test -d $$d/$$file; then \
504: dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
505: if test -d "$(distdir)/$$file"; then \
506: find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
507: fi; \
508: if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
509: cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
510: find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
511: fi; \
512: cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
513: else \
514: test -f "$(distdir)/$$file" \
515: || cp -p $$d/$$file "$(distdir)/$$file" \
516: || exit 1; \
517: fi; \
518: done
519: check-am: all-am
520: check: check-am
521: all-am: Makefile $(PROGRAMS) $(DATA) $(HEADERS)
522: installdirs:
523: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(examplesdir)"; do \
524: test -z "$$dir" || $(MKDIR_P) "$$dir"; \
525: done
526: install: install-am
527: install-exec: install-exec-am
528: install-data: install-data-am
529: uninstall: uninstall-am
530:
531: install-am: all-am
532: @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
533:
534: installcheck: installcheck-am
535: install-strip:
1.1.1.2 ! misho 536: if test -z '$(STRIP)'; then \
! 537: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
! 538: install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
! 539: install; \
! 540: else \
! 541: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
! 542: install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
! 543: "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
! 544: fi
1.1 misho 545: mostlyclean-generic:
546:
547: clean-generic:
548: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
549:
550: distclean-generic:
551: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
552: -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
553:
554: maintainer-clean-generic:
555: @echo "This command is intended for maintainers to use"
556: @echo "it deletes files that may require special tools to rebuild."
557: clean: clean-am
558:
559: clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
560:
561: distclean: distclean-am
562: -rm -rf ./$(DEPDIR)
563: -rm -f Makefile
564: distclean-am: clean-am distclean-compile distclean-generic \
565: distclean-tags
566:
567: dvi: dvi-am
568:
569: dvi-am:
570:
571: html: html-am
572:
573: html-am:
574:
575: info: info-am
576:
577: info-am:
578:
579: install-data-am: install-dist_examplesDATA
580:
581: install-dvi: install-dvi-am
582:
583: install-dvi-am:
584:
585: install-exec-am: install-binPROGRAMS
586:
587: install-html: install-html-am
588:
589: install-html-am:
590:
591: install-info: install-info-am
592:
593: install-info-am:
594:
595: install-man:
596:
597: install-pdf: install-pdf-am
598:
599: install-pdf-am:
600:
601: install-ps: install-ps-am
602:
603: install-ps-am:
604:
605: installcheck-am:
606:
607: maintainer-clean: maintainer-clean-am
608: -rm -rf ./$(DEPDIR)
609: -rm -f Makefile
610: maintainer-clean-am: distclean-am maintainer-clean-generic
611:
612: mostlyclean: mostlyclean-am
613:
614: mostlyclean-am: mostlyclean-compile mostlyclean-generic \
615: mostlyclean-libtool
616:
617: pdf: pdf-am
618:
619: pdf-am:
620:
621: ps: ps-am
622:
623: ps-am:
624:
625: uninstall-am: uninstall-binPROGRAMS uninstall-dist_examplesDATA
626:
627: .MAKE: install-am install-strip
628:
629: .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
630: clean-generic clean-libtool ctags distclean distclean-compile \
631: distclean-generic distclean-libtool distclean-tags distdir dvi \
632: dvi-am html html-am info info-am install install-am \
633: install-binPROGRAMS install-data install-data-am \
634: install-dist_examplesDATA install-dvi install-dvi-am \
635: install-exec install-exec-am install-html install-html-am \
636: install-info install-info-am install-man install-pdf \
637: install-pdf-am install-ps install-ps-am install-strip \
638: installcheck installcheck-am installdirs maintainer-clean \
639: maintainer-clean-generic mostlyclean mostlyclean-compile \
640: mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
641: tags uninstall uninstall-am uninstall-binPROGRAMS \
642: uninstall-dist_examplesDATA
643:
644:
645: vtysh_cmd.c: $(vtysh_cmd_FILES)
646: ./$(EXTRA_DIST) $(vtysh_cmd_FILES) > vtysh_cmd.c
647:
648: # Tell versions [3.59,3.63) of GNU make to not export all variables.
649: # Otherwise a system limit (for SysV at least) may be exceeded.
650: .NOEXPORT:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>