Mercurial > hg > Members > masakoha > testcode
diff parallel_processing/ppb_sem_counter/Makefile @ 13:753289c70eb4
add ppb_sem_counter some files
author | Masataka Kohagura <e085726@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 06 Jan 2014 13:44:34 +0900 |
parents | parallel_processing/ppb_data_shared/Makefile@51177cc6ab38 |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/parallel_processing/ppb_sem_counter/Makefile Mon Jan 06 13:44:34 2014 +0900 @@ -0,0 +1,11 @@ +TARGET = ppb_sem_counter +CC = clang++ +CPPFLAGS = -g -O0 + +$(TARGET): $(TARGET).o + $(CC) -g -O0 -o $@ $< +$(TARGET).o: $(TARGET).cc + +clean: + rm -f $(TARGET) + rm -f *.o