view c/read_lseek/Makefile @ 4:57b2c00b9dc6

file rename read_lseek.cc to main.cc & remove lseek
author Masataka Kohagura <e085726@ie.u-ryukyu.ac.jp>
date Fri, 13 Dec 2013 10:08:58 +0900
parents cd6ac4ce5c3c
children
line wrap: on
line source

TARGET=read_lseek
OPTION= -Wall -O0 -g

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

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