mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
71f080935a
Submitted by: Sean O Riordain <Sean.ORiordain@cyrona.com>
16 lines
191 B
Makefile
16 lines
191 B
Makefile
CC=cc
|
|
CFLAGS= -g -I../../include -Wall
|
|
LIBS= -L../.. -lcrypto
|
|
EXAMPLES=sign
|
|
|
|
all: $(EXAMPLES)
|
|
|
|
sign: sign.o
|
|
$(CC) -o sign sign.o $(LIBS)
|
|
|
|
clean:
|
|
rm -f $(EXAMPLES) *.o
|
|
|
|
test: all
|
|
./sign
|