Sha256: 844652c55b95617dad3b779fce43eec2154cb2c35341c871cfd18992e4fefcf2
Contents?: true
Size: 318 Bytes
Versions: 38
Compression:
Stored size: 318 Bytes
Contents
INCLUDE_DIR = ../../include/ SRC_DIR = ../ittnotify/ SOURCE_NAME = itt_refcol_impl.c OBJ_NAME = itt_refcol_impl.o LIB_NAME = libittrefcol.so CC ?= gcc CFLAGS = -I$(INCLUDE_DIR) -I$(SRC_DIR) build: $(CC) -fPIC $(CFLAGS) -c $(SOURCE_NAME) $(CC) -shared -o $(LIB_NAME) $(OBJ_NAME) clean: rm $(OBJ_NAME) $(LIB_NAME)
Version data entries
38 entries across 38 versions & 1 rubygems