Sha256: a5b3000a3962982d2f3e80d7922abb502b3a977eeec092bcd8f5a85e759cc34b

Contents?: true

Size: 670 Bytes

Versions: 4

Compression:

Stored size: 670 Bytes

Contents

LIBRARIES = libb64.a

# Build flags (uncomment one)
#############################
# Release build flags
CFLAGS += -fPIC -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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
swfmill-0.0.6 ext/libb64/src/Makefile
swfmill-0.0.5 ext/libb64/src/Makefile
swfmill-0.0.4 ext/libb64/src/Makefile
swfmill-0.0.3 ext/libb64/src/Makefile