From dec1359e90e847c90629e43ef3744539e8fb41c8 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Wed, 22 Apr 2015 13:33:09 +0200 Subject: added base64 coding/decoding libary showing captcha in login page (not verifying yet) --- 3rdParty/libb64/Makefile.orig | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 3rdParty/libb64/Makefile.orig (limited to '3rdParty/libb64/Makefile.orig') diff --git a/3rdParty/libb64/Makefile.orig b/3rdParty/libb64/Makefile.orig new file mode 100644 index 0000000..fc41310 --- /dev/null +++ b/3rdParty/libb64/Makefile.orig @@ -0,0 +1,25 @@ +all: all_src all_base64 + +all_src: + $(MAKE) -C src +all_base64: all_src + $(MAKE) -C base64 + +clean: clean_src clean_base64 clean_include + rm -f *~ *.bak + +clean_include: + rm -f include/b64/*~ + +clean_src: + $(MAKE) -C src clean; +clean_base64: + $(MAKE) -C base64 clean; + +distclean: clean distclean_src distclean_base64 + +distclean_src: + $(MAKE) -C src distclean; +distclean_base64: + $(MAKE) -C base64 distclean; + -- cgit v1.2.3-54-g00ecf