File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / quagga / vtysh / Makefile.am
Revision 1.1.1.4 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Nov 2 10:09:10 2016 UTC (7 years, 8 months ago) by misho
Branches: quagga, MAIN
CVS tags: v1_0_20160315, HEAD
quagga 1.0.20160315

    1: ## Process this file with Automake to create Makefile.in
    2: 
    3: AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib
    4: DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\"
    5: 
    6: LIBS = @LIBS@ @CURSES@ @LIBPAM@
    7: 
    8: AM_CFLAGS = $(WERROR)
    9: 
   10: bin_PROGRAMS = vtysh
   11: 
   12: vtysh_SOURCES = vtysh_main.c vtysh.c vtysh_user.c vtysh_config.c
   13: nodist_vtysh_SOURCES = vtysh_cmd.c
   14: CLEANFILES = vtysh_cmd.c
   15: noinst_HEADERS = vtysh.h vtysh_user.h
   16: vtysh_LDADD = ../lib/libzebra.la @LIBCAP@ @LIBREADLINE@
   17: 
   18: examplesdir = $(exampledir)
   19: dist_examples_DATA = vtysh.conf.sample
   20: 
   21: EXTRA_DIST = extract.pl
   22: 
   23: vtysh_cmd_FILES = $(top_srcdir)/bgpd/*.c $(top_srcdir)/isisd/*.c \
   24: 		  $(top_srcdir)/ospfd/*.c $(top_srcdir)/ospf6d/*.c \
   25: 		  $(top_srcdir)/ripd/*.c $(top_srcdir)/ripngd/*.c \
   26: 		  $(top_srcdir)/pimd/pim_cmd.c \
   27: 		  $(top_srcdir)/lib/keychain.c $(top_srcdir)/lib/routemap.c \
   28: 		  $(top_srcdir)/lib/filter.c $(top_srcdir)/lib/plist.c \
   29: 		  $(top_srcdir)/lib/distribute.c $(top_srcdir)/lib/if_rmap.c \
   30: 		  $(top_srcdir)/lib/vrf.c \
   31: 		  $(top_srcdir)/lib/vty.c $(top_srcdir)/zebra/debug.c \
   32: 		  $(top_srcdir)/zebra/interface.c \
   33: 		  $(top_srcdir)/zebra/irdp_interface.c \
   34: 		  $(top_srcdir)/zebra/rtadv.c $(top_srcdir)/zebra/zebra_vty.c \
   35: 		  $(top_srcdir)/zebra/zserv.c $(top_srcdir)/zebra/router-id.c \
   36: 		  $(top_srcdir)/zebra/zebra_routemap.c \
   37: 	          $(top_srcdir)/zebra/zebra_fpm.c
   38: 
   39: vtysh_cmd.c: $(vtysh_cmd_FILES)
   40: 	./$(EXTRA_DIST) $(vtysh_cmd_FILES) > vtysh_cmd.c
   41: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>