Updated some demos.
[openssl.git] / demos / prime / Makefile
diff --git a/demos/prime/Makefile b/demos/prime/Makefile
new file mode 100644 (file)
index 0000000..0166cd4
--- /dev/null
@@ -0,0 +1,20 @@
+CC=cc
+CFLAGS= -g -I../../include -Wall
+LIBS=  -L../.. -lcrypto
+EXAMPLES=prime
+
+all: $(EXAMPLES) 
+
+prime: prime.o
+       $(CC) -o prime prime.o $(LIBS)
+
+clean: 
+       rm -f $(EXAMPLES) *.o
+
+test: all
+       @echo Test creating a 128-bit prime
+       ./prime 128
+       @echo Test creating a 256-bit prime
+       ./prime 256
+       @echo Test creating a 512-bit prime
+       ./prime 512