~webapps/unity-js-scopes/node.js

« back to all changes in this revision

Viewing changes to deps/openssl/openssl/demos/prime/Makefile

  • Committer: Marcus Tomlinson
  • Date: 2015-11-13 07:59:04 UTC
  • Revision ID: marcus.tomlinson@canonical.com-20151113075904-h0swczmoq1rvstfc
Node v4 (stable)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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