repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
crypto
/
external
/
bsd
/
openssl
/
dist
/
demos
/
bio
/
Makefile
blob
435154053236850c69de8b564269db2cda315589
1
CC
=
cc
2
CFLAGS
= -
g
-
I..
/
..
/
include
3
LIBS
= -
L..
/
.. ..
/
..
/
libssl.a ..
/
..
/
libcrypto.a
4
EXAMPLES
=
saccept sconnect
5
6
all
: $(
EXAMPLES
)
7
8
saccept
:
saccept.o
9
$(
CC
) -
o saccept saccept.o
$(
LIBS
)
10
11
sconnect
:
sconnect.o
12
$(
CC
) -
o sconnect sconnect.o
$(
LIBS
)
13
14
clean
:
15
rm
-
f
$(
EXAMPLES
) *
.o
16