repo.or.cz
/
pop3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pop3: some mail servers including gmail return wrong mail sizes
[pop3.git]
/
Makefile
blob
aa52411f3289c061e27c13c7a4f71988049f5c17
1
# common options
2
CC
=
cc
3
4
# for openssl
5
OBJS
=
pop3.o uidl.o conn_openssl.o
6
CFLAGS
= -
Wall
-
O2
7
LDFLAGS
= -
lssl
8
9
# for mbedtls (polarssl)
10
#OBJS = pop3.o uidl.o conn_mbedtls.o
11
#CFLAGS = -Wall -O2
12
#LDFLAGS = -lmbedx509 -lmbedtls -lmbedcrypto
13
14
all
:
pop3
15
%
.o
: %
.c conf.h
16
$(
CC
) -
c
$(
CFLAGS
) $<
17
pop3
: $(
OBJS
)
18
$(
CC
) -
o
$
@
$(
OBJS
) $(
LDFLAGS
)
19
chmod
100
$
@
20
clean
:
21
rm
-
f
*
.o pop3