Sha256: 86ec088630980e3a34b40009fd1ae552e4cb5345ae734ec45f728985d5aaf06a
Contents?: true
Size: 604 Bytes
Versions: 39
Compression:
Stored size: 604 Bytes
Contents
# this Makefile is used by ext/nokogiri/extconf.rb # to enable a mini_portile2 recipe to build the gumbo parser .PHONY: clean CFLAGS += -std=c99 -Wall # allow the ENV var to override this RANLIB ?= ranlib gumbo_objs := \ ascii.o \ attribute.o \ char_ref.o \ error.o \ foreign_attrs.o \ parser.o \ string_buffer.o \ string_piece.o \ svg_attrs.o \ svg_tags.o \ tag.o \ tag_lookup.o \ token_buffer.o \ tokenizer.o \ utf8.o \ util.o \ vector.o libgumbo.a: $(gumbo_objs) $(AR) $(ARFLAGS) $@ $(gumbo_objs) - ($(RANLIB) $@ || true) >/dev/null 2>&1 clean: rm -f $(gumbo_objs) libgumbo.a
Version data entries
39 entries across 39 versions & 2 rubygems