mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-09 02:52:04 +08:00
21 lines
386 B
Makefile
21 lines
386 B
Makefile
# $OpenLDAP$
|
|
## Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
|
## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
##
|
|
## LIBAVL
|
|
##
|
|
|
|
SRCS = avl.c testavl.c
|
|
XSRCS = version.c
|
|
OBJS = avl.o
|
|
|
|
LDAP_INCDIR= ../../include
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
LIBRARY = libavl.a
|
|
PROGRAMS = testavl
|
|
XLIBS = -lavl
|
|
|
|
testavl: $(LIBRARY) testavl.o
|
|
$(LTLINK) -o $@ testavl.o $(LIBS)
|