mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-08-09 07:23:56 +08:00
first commit, SM2-DSA only
This commit is contained in:
20
demos/prime/Makefile
Normal file
20
demos/prime/Makefile
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user