Makefiles are no longer supported. Adding pseudo-break with their impending removal to make sure that people who are interested will notice

This commit is contained in:
Gennadiy Civil 2019-06-13 17:16:43 -04:00
parent 84a498decc
commit f7c178ecb3
2 changed files with 20 additions and 2 deletions

View File

@ -59,7 +59,16 @@ GMOCK_HEADERS = $(GMOCK_DIR)/include/gmock/*.h \
# House-keeping build targets.
all : $(GTEST_LIBS) $(TESTS)
ifndef GOOGLETEST_UNSUPPORTED_MAKEFILE_BUILD_SYSTEM_WORKAROUND
.PHONY all:
$(info "The Make buildsystem is no longer supported")
$(info "You can temporarily set GOOGLETEST_UNSUPPORTED_MAKEFILE_BUILD_SYSTEM_WORKAROUND=1")
$(info "i.e make GOOGLETEST_UNSUPPORTED_MAKEFILE_BUILD_SYSTEM_WORKAROUND=1 all")
$(info "But this is going away very soon. ")
$(exit 1)
else
all: $(GTEST_LIBS) $(TESTS)
endif
clean :
rm -f $(GTEST_LIBS) $(TESTS) *.o

View File

@ -44,7 +44,16 @@ GTEST_HEADERS = $(GTEST_DIR)/include/gtest/*.h \
# House-keeping build targets.
all : $(GTEST_LIBS) $(TESTS)
ifndef GOOGLETEST_UNSUPPORTED_MAKEFILE_BUILD_SYSTEM_WORKAROUND
.PHONY all:
$(info "The Make buildsystem is no longer supported")
$(info "You can temporarily set GOOGLETEST_UNSUPPORTED_MAKEFILE_BUILD_SYSTEM_WORKAROUND=1")
$(info "i.e make GOOGLETEST_UNSUPPORTED_MAKEFILE_BUILD_SYSTEM_WORKAROUND=1 all")
$(info "But this is going away very soon. ")
$(exit 1)
else
all: $(GTEST_LIBS) $(TESTS)
endif
clean :
rm -f $(GTEST_LIBS) $(TESTS) *.o