https://github.com/duckietown/Software
Revision 22a7b2bbf2aefd4a64475f29efed847d004c2d4a authored by Tristan Swedish on 09 April 2016, 21:20:02 UTC, committed by Tristan Swedish on 09 April 2016, 21:20:02 UTC
1 parent e04a5f0
Raw File
Tip revision: 22a7b2bbf2aefd4a64475f29efed847d004c2d4a authored by Tristan Swedish on 09 April 2016, 21:20:02 UTC
moved stub test to scripts and import using timeit
Tip revision: 22a7b2b
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)

fix-time:
	echo "Calling ntpdate to fix time"
	sudo ntpdate -u us.pool.ntp.org 

catkin-clean:
	rm -rf $(catkin_ws)/build

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