#Makefile for assignment 9

GPP = g++
OPTIONS = -c
#OPTIONS2 = -lpthread
SRC = dtmf.cpp
OBJS = dtmf.o

##
# Target Definitions
##

all:	clean a.out $(OBJS)

a.out: $(OBJS)	
	$(GPP) -o dtmf $(OBJS)

$(OBJS):$(SRC)	
	$(GPP) $(OPTIONS) $(SRC)

clean:
	rm -rf *.o
	rm -rf a.out
	rm -rf dtmf
	rm -rf stime.txt

