From 3413243ea90b7b241b7e0b3984689c53db4e384e Mon Sep 17 00:00:00 2001 From: hsc Date: Tue, 3 Jul 2012 13:27:04 +0000 Subject: [PATCH] bochs(un)install targets removed This doesn't work anymore, as we're not building a bochs binary. git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1413 8c4709b5-6ec9-48aa-a5cd-a96041d1645a --- cmake/bochs.cmake | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/cmake/bochs.cmake b/cmake/bochs.cmake index 81c63a53..54cbaea2 100644 --- a/cmake/bochs.cmake +++ b/cmake/bochs.cmake @@ -91,14 +91,15 @@ if(BUILD_BOCHS) COMMENT "[${PROJECT_NAME}] Cleaning all up (all-clean in bochs)" ) - add_custom_target(bochsinstall - COMMAND +make -C ${bochs_src_dir} CXX=\"ag++ -p ${PROJECT_SOURCE_DIR} -I${PROJECT_SOURCE_DIR}/src/core -I${CMAKE_BINARY_DIR}/src/core --real-instances --Xcompiler\" LIBTOOL=\"/bin/sh ./libtool --tag=CXX\" install - COMMENT "[${PROJECT_NAME}] Installing Bochs ..." - ) - - add_custom_target(bochsuninstall - COMMAND +make -C ${bochs_src_dir} uninstall - COMMENT "[${PROJECT_NAME}] Uninstalling Bochs ..." - ) + # these don't work, because we don't build a bochs binary anymore: + #add_custom_target(bochsinstall + # COMMAND +make -C ${bochs_src_dir} CXX=\"ag++ -p ${PROJECT_SOURCE_DIR} -I${PROJECT_SOURCE_DIR}/src/core -I${CMAKE_BINARY_DIR}/src/core --real-instances --Xcompiler\" LIBTOOL=\"/bin/sh ./libtool --tag=CXX\" install + # COMMENT "[${PROJECT_NAME}] Installing Bochs ..." + #) + # + #add_custom_target(bochsuninstall + # COMMAND +make -C ${bochs_src_dir} uninstall + # COMMENT "[${PROJECT_NAME}] Uninstalling Bochs ..." + #) endif(BUILD_BOCHS)