mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-03 12:28:52 +00:00

2008-08-13 Paul P Komkoff Jr <i@stingr.net> * configure.ac: add a configure flag and autoconf macro, which will determine if your toolchain supports PIE. * */Makefile.am: add corresponding CFLAGS and LDFLAGS into appropriate places. Signed-off-by: Paul Jakma <paul@quagga.net>
13 lines
401 B
Makefile
13 lines
401 B
Makefile
## Process this file with Automake to create Makefile.in
|
|
|
|
INCLUDES = @GUILE_CFLAGS@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib
|
|
DEFS = @DEFS@ -I. -I$(srcdir)
|
|
|
|
AM_CFLAGS = $(PICFLAGS)
|
|
AM_LDFLAGS = $(PILDFLAGS)
|
|
|
|
bin_PROGRAMS = zebra-guile
|
|
zebra_guile_SOURCES = zebra-guile.c zebra-support.c guile-bgp.c
|
|
noinst_HEADERS = zebra-guile.h
|
|
zebra_guile_LDADD = @GUILE_LDFLAGS@ ../bgpd/libbgp.a ../lib/libzebra.la
|