view c/blocked_mmap/Makefile @ 127:b061cd8205cc pairPro

merge
author masa
date Tue, 01 Dec 2015 21:50:09 +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