view c/regexParser/Makefile @ 78:23a96fefa643

add make test
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 28 Sep 2015 16:53:06 +0900
parents 82fbc8478f7b
children 52da06c3f050
line wrap: on
line source

TARGET= regexParser
OPTION= -Wall -O0 -g

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

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

test:
	$(TARGET) -regex "(ab)c"