summaryrefslogtreecommitdiffstats
path: root/demos/encode/Makefile
blob: fc1c06c6d7ac848e66f6d7e6bf3fc5ca1bf687f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# To run the demos when linked with a shared library (default):
#
#    LD_LIBRARY_PATH=../.. ./rsa_encode

CFLAGS = -I../../include -g -Wall
LDFLAGS = -L../..
LDLIBS = -lcrypto

all: rsa_encode

%.o: %.c
	$(CC) $(CFLAGS) -c $<

rsa_encode: rsa_encode.o

test: ;

clean:
	$(RM) *.o rsa_encode