Sha256: 32dde99ab505a18aa5f7a8c45a5e949de5a9bd5c97e7134b244c7efb03b945bc
Contents?: true
Size: 692 Bytes
Versions: 25
Compression:
Stored size: 692 Bytes
Contents
# -*- makefile -*- # # Common definitions for all systems that use GNU make # # Tack the extra deps onto the autogenerated variables INCFLAGS += -I$(LIBFFI_BUILD_DIR)/include LOCAL_LIBS += $(LIBFFI) BUILD_DIR = $(shell pwd) LIBFFI_CFLAGS = $(FFI_MMAP_EXEC) LIBFFI_BUILD_DIR = $(BUILD_DIR)/libffi ifeq ($(srcdir),.) LIBFFI_SRC_DIR := $(shell pwd)/libffi else LIBFFI_SRC_DIR := $(abspath $(srcdir)/libffi) endif LIBFFI = $(LIBFFI_BUILD_DIR)/.libs/libffi_convenience.a LIBFFI_CONFIGURE = $(LIBFFI_SRC_DIR)/configure --disable-static \ --with-pic=yes --disable-dependency-tracking $(OBJS): $(LIBFFI) # # libffi.mk or libffi.darwin.mk contains rules for building the actual library #
Version data entries
25 entries across 25 versions & 3 rubygems