https://github.com/duckietown/Software
Raw File
Tip revision: 41fcc5f9b9b9a3d5f47061bea00133bd1b32e60d authored by Brandon on 26 March 2016, 17:47:46 UTC
added working wheel command switch test and fixed bug in wheel command switch
Tip revision: 41fcc5f
Makefile

catkin_ws := catkin_ws
scuderia := scuderia.yaml
machines := $(catkin_ws)/src/duckietown/machines

all: $(machines)


$(machines): $(scuderia)
	python setup/create-machines-file.py $(scuderia) > $(machines)
 
catkin-clean:
	rm -rf $(catkin_ws)/build

build:
	catkin_make -C $(catkin_ws) --make-args "-j4"
back to top