You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
191 B
16 lines
191 B
14 years ago
|
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
|