repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove building with NOCRYPTO option
[minix.git]
/
crypto
/
external
/
bsd
/
openssl
/
dist
/
demos
/
prime
/
Makefile
blob
0166cd46fe46448504ea7bfb286a215b669369b5
1
CC
=
cc
2
CFLAGS
= -
g
-
I..
/
..
/
include
-
Wall
3
LIBS
= -
L..
/
..
-
lcrypto
4
EXAMPLES
=
prime
5
6
all
: $(
EXAMPLES
)
7
8
prime
:
prime.o
9
$(
CC
) -
o prime prime.o
$(
LIBS
)
10
11
clean
:
12
rm
-
f
$(
EXAMPLES
) *
.o
13
14
test
:
all
15
@echo Test creating a
128
-
bit prime
16
.
/
prime
128
17
@echo Test creating a
256
-
bit prime
18
.
/
prime
256
19
@echo Test creating a
512
-
bit prime
20
.
/
prime
512