diff options
author | Timo Teräs <timo.teras@iki.fi> | 2014-09-30 08:20:31 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2014-09-30 08:20:45 +0300 |
commit | ae9537903c496dc50693c59b7b0751aee38ed012 (patch) | |
tree | b1eddd7d5178eac802cb4018a0d75bd899133457 /nhrpd/Makefile.am | |
parent | 55bccfd7198195aef8f968691b53ec867cbe3989 (diff) | |
download | quagga-old-nhrp.tar.bz2 quagga-old-nhrp.tar.xz |
add nhrpd skeletonold-nhrp
Diffstat (limited to 'nhrpd/Makefile.am')
-rw-r--r-- | nhrpd/Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/nhrpd/Makefile.am b/nhrpd/Makefile.am new file mode 100644 index 00000000..d5e663e7 --- /dev/null +++ b/nhrpd/Makefile.am @@ -0,0 +1,18 @@ +## Process this file with automake to produce Makefile.in. + +INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib +DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" +INSTALL_SDATA=@INSTALL@ -m 600 + +AM_CFLAGS = $(PICFLAGS) +AM_LDFLAGS = $(PILDFLAGS) + +sbin_PROGRAMS = nhrpd + +nhrpd_SOURCES = \ + nhrp_config.c \ + nhrp_main.c + +nhrpd_LDADD = ../lib/libzebra.la @LIBCAP@ + +#dist_examples_DATA = nhrpd.conf.sample |