Mercurial > hg > Applications > Grep
diff parallel_processing/ppb_cond_queue/Makefile @ 19:a9534f217a0c
add some files
author | Masataka Kohagura <e085726@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 06 Jan 2014 17:50:56 +0900 |
parents | parallel_processing/ppb_cond_counter/Makefile@57650a6829a1 |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/parallel_processing/ppb_cond_queue/Makefile Mon Jan 06 17:50:56 2014 +0900 @@ -0,0 +1,11 @@ +TARGET = ppb_cond_queue +CC = clang +CPPFLAGS = -g -O0 + +$(TARGET): $(TARGET).o + $(CC) -g -O0 -o $@ $< +$(TARGET).o: $(TARGET).c + +clean: + rm -f $(TARGET) + rm -f *.o