aboutsummaryrefslogtreecommitdiffstats
path: root/demos/sign/Makefile.in
blob: f6afeb7be0f047fa1afc792f413e5448c1e344d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
# DO NOT DELETE THIS LINE -- make depend depends on it.