Skip to content

Instantly share code, notes, and snippets.

@ahendrix
Created May 2, 2013 00:13
Show Gist options
  • Save ahendrix/5499335 to your computer and use it in GitHub Desktop.
Save ahendrix/5499335 to your computer and use it in GitHub Desktop.
catkin makefile
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