mirror of
https://github.com/reactos/CMake.git
synced 2024-12-24 20:44:47 +00:00
09ff191c3f
Use CXXFLAGS in the makefile's link rule since it invokes the C++ compiler front-end. Retool the makefile not to require GNU Make. Using backticks instead of $(shell ...) is safe so long as one guards against the possibility of backslashes getting inside the backticks, so use temporary files and shell variables to avoid them.
30 lines
831 B
Makefile
30 lines
831 B
Makefile
CMAKE = "@cmakeExecutable@"
|
|
CMAKE_CURRENT_BINARY_DIR = "@CMAKE_CURRENT_BINARY_DIR@"
|
|
CMAKE_CXX_COMPILER = "@CMAKE_CXX_COMPILER@"
|
|
CMAKE_CXX_COMPILER_ID = "@CMAKE_CXX_COMPILER_ID@"
|
|
|
|
CMAKE_FOO = $(CMAKE) --find-package -DCMAKE_MODULE_PATH=$(CMAKE_CURRENT_BINARY_DIR) -DNAME=Foo -DLANGUAGE=CXX -DCOMPILER_ID=$(CMAKE_CXX_COMPILER_ID)
|
|
|
|
tmp = tmp.txt
|
|
|
|
all: clean pngtest
|
|
|
|
main.o: main.cpp
|
|
@$(CMAKE_FOO) -DMODE=COMPILE >$(tmp)
|
|
@foo="`cat $(tmp)`"; \
|
|
printf '"%s" %s %s -c main.cpp\n' $(CMAKE_CXX_COMPILER) "$(CXXFLAGS)" "$$foo" >$(tmp)
|
|
@cat $(tmp)
|
|
@sh $(tmp)
|
|
@rm -f $(tmp)
|
|
|
|
pngtest: main.o
|
|
@$(CMAKE_FOO) -DMODE=LINK >$(tmp)
|
|
@foo="`cat $(tmp)`"; \
|
|
printf '"%s" %s %s -o pngtest main.o %s\n' $(CMAKE_CXX_COMPILER) "$(CXXFLAGS)" "$(LDFLAGS)" "$$foo" >$(tmp)
|
|
@cat $(tmp)
|
|
@sh $(tmp)
|
|
@rm -f $(tmp)
|
|
|
|
clean:
|
|
rm -f $(tmp) *.o pngtest
|