repo.or.cz
/
vcard2ldap.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
More sophisticated selection of the user jid in Vcard2Ldap. Minor fixes.
[vcard2ldap.git]
/
tools
/
Makefile
blob
87b4e8d10d2d5b6d7b507010e4711ad6ce185ee8
1
CFLAGS
= -
g
-
Werror
2
PROG
:=
ldap_leak
3
OBJ
:=
ldap_leak.o
4
5
ifeq
($(
NOLEAK
),
1
)
6
CFLAGS
+= -
DNOLEAK
7
endif
8
9
all
: $(
PROG
)
10
$(
PROG
) : $(
OBJ
)
11
$(
CC
) -
o
$(
PROG
) $(
OBJ
) -
lldap
-
llber
12
clean
:
13
$(
RM
) $(
OBJ
) $(
PROG
) *
~