Sync usage with man page.
[netbsd-mini2440.git] / crypto / external / bsd / openssl / dist / demos / eay / Makefile
blob2d22eaca569d3d1f2d56ec657d5b5cdf7012320d
1 CC=cc
2 CFLAGS= -g -I../../include
3 #LIBS= -L../.. -lcrypto -lssl
4 LIBS= -L../.. ../../libssl.a ../../libcrypto.a
6 # the file conn.c requires a file "proxy.h" which I couldn't find...
7 #EXAMPLES=base64 conn loadrsa
8 EXAMPLES=base64 loadrsa
10 all: $(EXAMPLES)
12 base64: base64.o
13 $(CC) -o base64 base64.o $(LIBS)
15 # sorry... can't find "proxy.h"
16 #conn: conn.o
17 # $(CC) -o conn conn.o $(LIBS)
19 loadrsa: loadrsa.o
20 $(CC) -o loadrsa loadrsa.o $(LIBS)
22 clean:
23 rm -f $(EXAMPLES) *.o