diff options
author | Martin Mares <mj@ucw.cz> | 1998-05-03 18:43:39 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-05-03 18:43:39 +0200 |
commit | 18c8241a91bd9208879666f1a1a13f454e66d75b (patch) | |
tree | 8bdc5f3e384b6b9198d5ab834d869c8d1fb261a7 /lib/Makefile | |
parent | a8b6038225d18155883e330c96b2bc2e44153e1e (diff) | |
download | bird-18c8241a91bd9208879666f1a1a13f454e66d75b.tar bird-18c8241a91bd9208879666f1a1a13f454e66d75b.zip |
BIRD library: The story continues.
Complete resource manages and IP address handling.
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index 214f76a..6eb14e1 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,3 +1,9 @@ -OBJS=lists.o +OBJS=lists.o bitops.o resource.o xmalloc.o mempool.o slab.o md5.o + +ifdef IPV6 +OBJS += ipv6.o +else +OBJS += ipv4.o +endif include $(TOPDIR)/Rules |