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.9.1.pre.rc.1 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.9.0.pre.rc.1 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.9.0 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.7.0.beta45.10 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.7.0.beta45.9 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.7.0.beta45.8 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.7.0.beta45.7 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.7.0.beta45.6 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.7.0.beta45.5 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.7.0.beta45.4 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.7.0.beta45.3 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.7.0.beta45.2 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.7.0.beta45.1 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.7.0.beta44 vendor/c/hashmap/test/Makefile
prometheus-client-mmap-0.7.0.beta43 vendor/c/hashmap/test/Makefile