paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | ## Process this file with automake to produce Makefile.in. |
| 2 | |
| 3 | INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib |
| 4 | DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" |
| 5 | |
gdt | 87efd64 | 2004-06-30 17:36:11 +0000 | [diff] [blame] | 6 | lib_LTLIBRARIES = libzebra.la |
gdt | b7a97f8 | 2004-07-23 16:23:56 +0000 | [diff] [blame] | 7 | libzebra_la_LDFLAGS = -version 0:0:0 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8 | |
gdt | 87efd64 | 2004-06-30 17:36:11 +0000 | [diff] [blame] | 9 | libzebra_la_SOURCES = \ |
hasso | 6590f2c | 2004-10-19 20:40:08 +0000 | [diff] [blame] | 10 | network.c pid_output.c getopt.c getopt1.c daemon.c \ |
| 11 | checksum.c vector.c linklist.c vty.c command.c \ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 12 | 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 \ |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 14 | zclient.c sockopt.c smux.c md5.c if_rmap.c keychain.c privs.c \ |
ajs | 5b85fac | 2004-11-26 19:36:42 +0000 | [diff] [blame] | 15 | sigevent.c pqueue.c jhash.c |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 16 | |
gdt | 87efd64 | 2004-06-30 17:36:11 +0000 | [diff] [blame] | 17 | libzebra_la_DEPENDENCIES = @LIB_REGEX@ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 18 | |
gdt | 87efd64 | 2004-06-30 17:36:11 +0000 | [diff] [blame] | 19 | libzebra_la_LIBADD = @LIB_REGEX@ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 20 | |
gdt | af27365 | 2003-12-08 18:12:34 +0000 | [diff] [blame] | 21 | pkginclude_HEADERS = \ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 22 | buffer.h command.h filter.h getopt.h hash.h if.h linklist.h log.h \ |
| 23 | memory.h network.h prefix.h routemap.h distribute.h sockunion.h \ |
| 24 | str.h stream.h table.h thread.h vector.h version.h vty.h zebra.h \ |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 25 | plist.h zclient.h sockopt.h smux.h md5-gnu.h if_rmap.h keychain.h \ |
ajs | 5b85fac | 2004-11-26 19:36:42 +0000 | [diff] [blame] | 26 | privs.h sigevent.h pqueue.h jhash.h zassert.h |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 27 | |
| 28 | EXTRA_DIST = regex.c regex-gnu.h |
| 29 | |