QUEUING = ../queuing/queuing.o
LIBS = -lcurses -ltermcap -lm
MATHLIB = -lm

all: combined combined2 bwater
combined: combined.c
	cc -o combined combined.c $(QUEUING) $(LIBS)
combined2: combined2.c
	cc -o combined2 combined2.c $(MATHLIB)
bwater: bwater.c
	cc -o bwater bwater.c $(MATHLIB)
clean:	
	rm -f combined combined2 bwater *.o

