csci4061/lab10-code/Makefile
Michael Zhang 041f660ccd
f
2018-01-29 17:28:37 -06:00

16 lines
275 B
Makefile

CFLAGS = -Wall -g
CC = gcc $(CFLAGS)
all : philosophers_ipc philosophers_pthread
philosophers_ipc : philosophers_ipc.c
$(CC) -o $@ $^
philosophers_pthread: philosophers_pthread.c
$(CC) -pthread -o $@ $^
clean :
rm -f *.o philosophers_ipc # philosophers_pthread