From 5fc3c05878a0fbd6e0abbc079b208ddb41f36a2d Mon Sep 17 00:00:00 2001 From: Ruben Smits Date: Fri, 26 Nov 2010 14:21:44 +0100 Subject: [PATCH] add default Makefile Signed-off-by: Ruben Smits --- Makefile | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a24531d --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +ifdef ROS_ROOT +default: install +include $(shell rospack find mk)/cmake.mk +install: all + cd build; CMAKE_INSTALL_PREFIX=$PWD make install +else +$(warning This Makefile only works with ROS rosmake, without rosmake do the normal cmake stuff) +endif -- 1.7.1