summaryrefslogtreecommitdiff
path: root/3rdParty/libb64/Makefile.orig
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/libb64/Makefile.orig')
-rw-r--r--3rdParty/libb64/Makefile.orig25
1 files changed, 25 insertions, 0 deletions
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;
+