view parallel_processing/chapter3/ppb_cond_queue/Makefile @ 113:ffef79514d3c pairPro

add getWord
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 23 Nov 2015 17:49:11 +0900
parents 508b47c8f4d8
children
line wrap: on
line source

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