- Renamed include directory to polarssl
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..69ee049
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,30 @@
+
+DESTDIR=/usr/local
+PREFIX=xyssl_
+
+.SILENT:
+
+all:
+ cd library && make all && cd ..
+ cd programs && make all && cd ..
+
+install:
+ mkdir -p $(DESTDIR)/include/xyssl
+ cp -r include/xyssl $(DESTDIR)/include
+
+ mkdir -p $(DESTDIR)/lib
+ cp library/libxyssl.* $(DESTDIR)/lib
+
+ mkdir -p $(DESTDIR)/bin
+ for p in programs/*/* ; do \
+ if [ -x $$p ] && [ ! -d $$p ] ; \
+ then \
+ f=$(PREFIX)`basename $$p` ; \
+ cp $$p $(DESTDIR)/bin/$$f ; \
+ fi \
+ done
+
+clean:
+ cd library && make clean && cd ..
+ cd programs && make clean && cd ..
+