From 35997e9d743721ee0392812d38e29616885a427c Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sun, 13 Dec 2015 15:53:59 +0100 Subject: renamed the project to aCms (avoid confusion) --- 3rdParty/libb64/base64/Makefile | 56 ----------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 3rdParty/libb64/base64/Makefile (limited to '3rdParty/libb64/base64/Makefile') 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 - -- cgit v1.2.3-54-g00ecf