Skip to content
This repository was archived by the owner on Nov 20, 2021. It is now read-only.

Commit 8bd1c0c

Browse files
committedJan 3, 2014
All make-based projects: Use $(MAKE) instead of 'make' for all commands, per the standard requirements for nested Makefiles. See GNU Make docs for $(MAKE) for details.
1 parent 0f00804 commit 8bd1c0c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+99
-99
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,9 @@ ExternalProject_Add(${libtiff_NAME}
209209
--prefix=${BUILDEM_DIR}
210210
LDFLAGS=${BUILDEM_LDFLAGS}
211211
CPPFLAGS=-I${BUILDEM_DIR}/include
212-
BUILD_COMMAND ${BUILDEM_ENV_STRING} make
212+
BUILD_COMMAND ${BUILDEM_ENV_STRING} $(MAKE)
213213
BUILD_IN_SOURCE 1
214-
INSTALL_COMMAND ${BUILDEM_ENV_STRING} make install
214+
INSTALL_COMMAND ${BUILDEM_ENV_STRING} $(MAKE) install
215215
)
216216
217217
endif (NOT libtiff_NAME)

‎ann.cmake

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ ExternalProject_Add(${ann_NAME}
3434
-DCMAKE_PREFIX_PATH=${BUILDEM_DIR}
3535

3636

37-
BUILD_COMMAND ${BUILDEM_ENV_STRING} make
38-
INSTALL_COMMAND ${BUILDEM_ENV_STRING} make install
39-
TEST_COMMAND "" # ${BUILDEM_ENV_STRING} make check
37+
BUILD_COMMAND ${BUILDEM_ENV_STRING} $(MAKE)
38+
INSTALL_COMMAND ${BUILDEM_ENV_STRING} $(MAKE) install
39+
TEST_COMMAND "" # ${BUILDEM_ENV_STRING} $(MAKE) check
4040
)
4141

4242
set_target_properties(${ann_NAME} PROPERTIES EXCLUDE_FROM_ALL ON)

0 commit comments

Comments
 (0)
This repository has been archived.