summaryrefslogtreecommitdiff
path: root/3rdParty
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-12-13 15:53:59 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2015-12-13 15:53:59 +0100
commit35997e9d743721ee0392812d38e29616885a427c (patch)
tree36909a9eedfdbcb7591e7c568fef2a6b2ad4c692 /3rdParty
parentebf669cdbf7854f03113a937605658f100aefd48 (diff)
downloadaCms-35997e9d743721ee0392812d38e29616885a427c.tar.gz
aCms-35997e9d743721ee0392812d38e29616885a427c.tar.bz2
renamed the project to aCms (avoid confusion)
Diffstat (limited to '3rdParty')
-rw-r--r--3rdParty/libb64/base64/Makefile56
-rw-r--r--3rdParty/libb64/base64/VisualStudioProject/Makefile11
-rw-r--r--3rdParty/libb64/src/Makefile43
3 files changed, 0 insertions, 110 deletions
diff --git a/3rdParty/libb64/base64/Makefile b/3rdParty/libb64/base64/Makefile
deleted file mode 100644
index 30a2c5c..0000000
--- a/3rdParty/libb64/base64/Makefile
+++ /dev/null
@@ -1,56 +0,0 @@
-BINARIES = base64
-
-# Build flags (uncomment one)
-#############################
-# Release build flags
-CFLAGS += -O3
-#############################
-# Debug build flags
-#CFLAGS += -g
-#############################
-
-# select a buffersize
-# a larger size should be faster, but takes more runtime memory
-#BUFFERSIZE = 4096
-#BUFFERSIZE = 65536
-BUFFERSIZE = 16777216
-
-SOURCES = base64.cc
-
-TARGETS = $(BINARIES)
-
-LINK.o = g++
-
-CFLAGS += -Werror -pedantic
-CFLAGS += -DBUFFERSIZE=$(BUFFERSIZE)
-CFLAGS += -I../include
-
-CXXFLAGS += $(CFLAGS)
-
-vpath %.h ../include/b64
-vpath %.a ../src
-
-.PHONY : clean
-
-all: $(TARGETS) #strip
-
-base64: libb64.a
-
-strip:
- strip $(BINARIES) *.exe
-
-clean: clean_VisualStudioProject
- rm -f *.exe* *.o $(TARGETS) *.bak *~
-clean_VisualStudioProject:
- $(MAKE) -C VisualStudioProject clean
-
-distclean: clean distclean_VisualStudioProject
- rm -f depend
-distclean_VisualStudioProject: clean_VisualStudioProject
- $(MAKE) -C VisualStudioProject distclean
-
-depend: $(SOURCES)
- makedepend -f- $(CFLAGS) $(SOURCES) 2> /dev/null 1> depend
-
--include depend
-
diff --git a/3rdParty/libb64/base64/VisualStudioProject/Makefile b/3rdParty/libb64/base64/VisualStudioProject/Makefile
deleted file mode 100644
index 047fcb9..0000000
--- a/3rdParty/libb64/base64/VisualStudioProject/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-DEBRIS = base64.sdf base64.suo base64.vcxproj.user
-
-all:
-
-clean:
- rm -rf Debug Release
-
-distclean: clean
- rm -f $(DEBRIS)
-
- \ No newline at end of file
diff --git a/3rdParty/libb64/src/Makefile b/3rdParty/libb64/src/Makefile
deleted file mode 100644
index 28b2382..0000000
--- a/3rdParty/libb64/src/Makefile
+++ /dev/null
@@ -1,43 +0,0 @@
-LIBRARIES = libb64.a
-
-# Build flags (uncomment one)
-#############################
-# Release build flags
-CFLAGS += -O3
-#############################
-# Debug build flags
-#CFLAGS += -g
-#############################
-
-SOURCES = cdecode.c cencode.c
-
-TARGETS = $(LIBRARIES)
-
-LINK.o = gcc
-
-CFLAGS += -Werror -pedantic
-CFLAGS += -I../include
-
-vpath %.h ../include/b64
-
-.PHONY : clean
-
-all: $(TARGETS) #strip
-
-libb64.a: cencode.o cdecode.o
- $(AR) $(ARFLAGS) $@ $^
-
-strip:
- strip $(BINARIES) *.exe
-
-clean:
- rm -f *.exe* *.o $(TARGETS) *.bak *~
-
-distclean: clean
- rm -f depend
-
-depend: $(SOURCES)
- makedepend -f- $(CFLAGS) $(SOURCES) 2> /dev/null 1> depend
-
--include depend
-