view c/regexParser/Makefile @ 70:87dff3a124ab

resolve segmentation fault(But not correct performance)
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Tue, 25 Aug 2015 13:02:56 +0900
parents 82fbc8478f7b
children 23a96fefa643
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 *~ \#*