Add a few more target platforms, to see how well the shared library
[openssl.git] / demos / eay / Makefile
1 CC=cc
2 CFLAGS= -g -I../../include
3 #LIBS=  -L../.. -lcrypto -lssl
4 LIBS= -L../.. ../../libssl.a ../../libcrypto.a
5
6 # the file conn.c requires a file "proxy.h" which I couldn't find...
7 #EXAMPLES=base64 conn loadrsa
8 EXAMPLES=base64 loadrsa
9
10 all: $(EXAMPLES) 
11
12 base64: base64.o
13         $(CC) -o base64 base64.o $(LIBS)
14 #
15 # sorry... can't find "proxy.h"
16 #conn: conn.o
17 #       $(CC) -o conn conn.o $(LIBS)
18
19 loadrsa: loadrsa.o
20         $(CC) -o loadrsa loadrsa.o $(LIBS)
21
22 clean:  
23         rm -f $(EXAMPLES) *.o
24