# make, then run 'shop'. # Makefile for CS 540 Assignment #3, Semaphores CC=gcc all: shop barber customer shop: shop.o $(CC) -o $@ $^ shop.o: shop.c shop.h $(CC) -c $< clean: rm -f shop barber customer *.o force: clean all