Created
May 2, 2013 00:13
-
-
Save ahendrix/5499335 to your computer and use it in GitHub Desktop.
catkin makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: | |
catkin_make | |
.PHONY: all | |
test: | |
catkin_make run_tests | |
.PHONY: test | |
install: | |
catkin_make install | |
.PHONY: install | |
clean: | |
-rm -rf build | |
-rm -rf devel | |
-rm -rf install | |
.PHONY: clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment