Revision 8ae6cf70bf43444fb5adff7c26d6c4bb6c5ddc95 authored by Teddy Ort on 01 April 2016, 23:20:24 UTC, committed by Teddy Ort on 01 April 2016, 23:20:24 UTC
Conflicts:
	catkin_ws/src/duckietown/config/baseline/kinematics/default.yaml
2 parent s 239e6fd + c5f4477
Raw File
Makefile

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

all: $(machines)

fix-time:
	sudo ntpdate -u us.pool.ntp.org 

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

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