Sha256: d52b98927e716ef3c952766991063530601d22be8f320f94f8ff6a7617985188

Contents?: true

Size: 469 Bytes

Versions: 8

Compression:

Stored size: 469 Bytes

Contents

BUILD_DIR = ../build
LIBS := -lpthread
CPP_OBJS=$(BUILD_DIR)/gtest-all.o $(BUILD_DIR)/gtest-main.o

SOURCES=gtest-all.cc gtest-main.cc


# Each subdirectory must supply rules for building sources it contributes
$(BUILD_DIR)/%.o: %.cc
	@echo 'Building file: $<'
	@echo 'Invoking: GCC C++ Compiler'
	g++ -I../ -O0 -g3 -Wall -DGTEST_USE_OWN_TR1_TUPLE=1 -c -o "$@" "$<"
	@echo 'Finished building: $<'
	@echo ' '

all: $(CPP_OBJS)

clean:
	-$(RM) $(CPP_OBJS) 
	-@echo ' '

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ceedling-1.0.1 plugins/fff/vendor/fff/gtest/Makefile
ceedling-1.0.0 plugins/fff/vendor/fff/gtest/Makefile
ceedling-0.28.1 plugins/fake_function_framework/vendor/fff/gtest/Makefile
ceedling-0.27.0 plugins/fake_function_framework/vendor/fff/gtest/Makefile
ceedling-0.25.0 plugins/fake_function_framework/vendor/fff/gtest/Makefile
ceedling-0.24.0 plugins/fake_function_framework/vendor/fff/gtest/Makefile
ceedling-0.22.0 plugins/fake_function_framework/vendor/fff/gtest/Makefile
ceedling-0.21.0 plugins/fake_function_framework/vendor/fff/gtest/Makefile