view c/realtime_input/Makefile @ 59:af189c727733

fix
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Tue, 14 Jul 2015 14:08:36 +0900
parents 3e3365a17573
children
line wrap: on
line source

TARGET=realtime_input
OPTION= -Wall -O0 -g

$(TARGET):main.cc
	clang $(OPTION) -o $(TARGET) main.cc

clean:
	rm -f $(TARGET)
	rm -r $(TARGET).dSYM
	rm -f *~ \#*