More sophisticated selection of the user jid in Vcard2Ldap. Minor fixes.
[vcard2ldap.git] / tools / Makefile
blob87b4e8d10d2d5b6d7b507010e4711ad6ce185ee8
1 CFLAGS = -g -Werror
2 PROG := ldap_leak
3 OBJ := ldap_leak.o
5 ifeq ($(NOLEAK), 1)
6 CFLAGS += -DNOLEAK
7 endif
9 all: $(PROG)
10 $(PROG) : $(OBJ)
11 $(CC) -o $(PROG) $(OBJ) -lldap -llber
12 clean:
13 $(RM) $(OBJ) $(PROG) *~