Sha256: 741fd887c6492c068390e96d9ed6167bc4c1097ceeac01a16ad17a5a2fba1104

Contents?: true

Size: 379 Bytes

Versions: 115

Compression:

Stored size: 379 Bytes

Contents

TOP_DIR := $(CURDIR)/..
SRC_DIR := $(TOP_DIR)/src

TARGET_EXEC := hashmap_test

SOURCES := $(SRC_DIR)/hashmap.c hashmap_test.c

CFLAGS += -O0 -g -ggdb -Wall -Wunused -Werror -I$(SRC_DIR) -DHASHMAP_METRICS

OBJS := $(SOURCES:%.c=%.o)


test: $(TARGET_EXEC)

$(TARGET_EXEC): $(OBJS)
	@echo EXEC $@ ; \
	$(CC) -o $@ $(OBJS)

clean:
	rm -f $(OBJS) $(TARGET_EXEC)

.PHONY: test clean

Version data entries

115 entries across 115 versions & 1 rubygems

Version Path
prometheus-client-mmap-0.28.1 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.28.1-x86_64-linux vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.28.1-x86_64-darwin vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.28.1-arm64-darwin vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.28.1-aarch64-linux vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.28.0 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.28.0-x86_64-linux vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.28.0-x86_64-darwin vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.28.0-arm64-darwin vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.28.0-aarch64-linux vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.27.0 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.27.0-x86_64-linux vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.27.0-x86_64-darwin vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.27.0-arm64-darwin vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.27.0-aarch64-linux vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.26.1 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.26.1-x86_64-linux vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.26.1-x86_64-darwin vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.26.1-arm64-darwin vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.26.1-aarch64-linux vendor/c/hashmap/test/Makefile