openssl1.0/demos/sign/Makefile

16 lines
191 B
Makefile
Raw Normal View History

2019-08-09 10:00:55 +02:00
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