summaryrefslogtreecommitdiffstats
path: root/demos/sign/Makefile.in
blob: e6d391e4ada441db01f7b1593d418f9d635748a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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