view c/blocked_mmap/Makefile @ 62:a49b4a8b8c14

implement isLiteral
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Tue, 14 Jul 2015 16:45:07 +0900
parents edecf5b459c9
children
line wrap: on
line source

TARGET= mmap
OPTION= -Wall -O0 -g

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

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

test:
	./mmap -file main.cc