blob: 3763c8b422591bb03779d98f5e9afa75ee1b660b [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001## Process this file with automake to produce Makefile.in.
2
hasso2d582282005-03-28 15:29:07 +00003INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib @SNMP_INCLUDES@
paul718e3742002-12-13 20:15:29 +00004DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\"
5
gdt87efd642004-06-30 17:36:11 +00006lib_LTLIBRARIES = libzebra.la
gdtb7a97f82004-07-23 16:23:56 +00007libzebra_la_LDFLAGS = -version 0:0:0
paul718e3742002-12-13 20:15:29 +00008
gdt87efd642004-06-30 17:36:11 +00009libzebra_la_SOURCES = \
hasso6590f2c2004-10-19 20:40:08 +000010 network.c pid_output.c getopt.c getopt1.c daemon.c \
11 checksum.c vector.c linklist.c vty.c command.c \
paul718e3742002-12-13 20:15:29 +000012 sockunion.c prefix.c thread.c if.c memory.c buffer.c table.c hash.c \
13 filter.c routemap.c distribute.c stream.c str.c log.c plist.c \
paul2d75d052004-01-19 21:31:15 +000014 zclient.c sockopt.c smux.c md5.c if_rmap.c keychain.c privs.c \
paul354d1192005-04-25 16:26:42 +000015 sigevent.c pqueue.c jhash.c memtypes.c workqueue.c
paul2fd2fd52005-04-15 11:47:15 +000016
17BUILT_SOURCES = memtypes.h
paul718e3742002-12-13 20:15:29 +000018
gdt87efd642004-06-30 17:36:11 +000019libzebra_la_DEPENDENCIES = @LIB_REGEX@
paul718e3742002-12-13 20:15:29 +000020
gdt87efd642004-06-30 17:36:11 +000021libzebra_la_LIBADD = @LIB_REGEX@
paul718e3742002-12-13 20:15:29 +000022
gdtaf273652003-12-08 18:12:34 +000023pkginclude_HEADERS = \
paul718e3742002-12-13 20:15:29 +000024 buffer.h command.h filter.h getopt.h hash.h if.h linklist.h log.h \
25 memory.h network.h prefix.h routemap.h distribute.h sockunion.h \
26 str.h stream.h table.h thread.h vector.h version.h vty.h zebra.h \
pauledd7c242003-06-04 13:59:38 +000027 plist.h zclient.h sockopt.h smux.h md5-gnu.h if_rmap.h keychain.h \
paul354d1192005-04-25 16:26:42 +000028 privs.h sigevent.h pqueue.h jhash.h zassert.h memtypes.h \
29 privs.h sigevent.h pqueue.h jhash.h zassert.h memtypes.h workqueue.h
paul718e3742002-12-13 20:15:29 +000030
paul2fd2fd52005-04-15 11:47:15 +000031EXTRA_DIST = regex.c regex-gnu.h memtypes.awk
paul718e3742002-12-13 20:15:29 +000032
paulab59ae32005-04-25 13:52:26 +000033memtypes.h: $(srcdir)/memtypes.c $(srcdir)/memtypes.awk
paulc4d23bb2005-04-25 14:18:43 +000034 ($(GAWK) -f $(srcdir)/memtypes.awk $(srcdir)/memtypes.c > memtypes.h)