Sha256: d94c492e2ffe19aa8b9c0cf2e3ff496d8106b97a96517e16f448f07d4ffe3f2c
Contents?: true
Size: 1.03 KB
Versions: 4
Compression:
Stored size: 1.03 KB
Contents
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
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
swfmill-0.0.6 | ext/libb64/base64/Makefile |
swfmill-0.0.5 | ext/libb64/base64/Makefile |
swfmill-0.0.4 | ext/libb64/base64/Makefile |
swfmill-0.0.3 | ext/libb64/base64/Makefile |