summaryrefslogtreecommitdiff
path: root/pgm5/prodcons.d/Makefile
blob: 174975d72407e3c8757f16166707c7a450806b4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
CC=gcc
CFLAGS=-g -Wall -D_REENTRANT
LIBS=-lpthread

prodcons: prodcons.c
	$(CC) $(CFLAGS) -o prodcons prodcons.c $(LIBS)

clean:
	rm -f prodcons core.*