chatterbot : fdent.o main.o bot.o misctime.o misc.o conf.o
	g++ -o chatterbot fdent.o main.o bot.o misctime.o misc.o conf.o 
backup : 
	../COP4530/scripts/backup.sh
clean :
	rm -f *.o *.gch *.core
build : clean chatterbot
main.o : main.cpp config.h
	g++ -c main.cpp
bot.o : bot.cpp config.h tcpent.h sched.h
	g++ -c bot.cpp
misc.o : misc.cpp
	g++ -c misc.cpp
conf.o : conf.cpp
	g++ -c conf.cpp
misctime.o : misctime.cpp
	g++ -c misctime.cpp
fdent.o : fdent.cpp
	g++ -c fdent.cpp

