#
# timediff makefile
#      created by Robert Leyva
#
PROGRAM_NAME = timediff

#
# CXXFLAGS
# used by gnu make's implicit rules
#
# I choose to show all warnings (-Wall), and include debugging information (-g)
CXXFLAGS := -Wall -g 

#
# LDLIBS
#
LDLIBS := -lboost_system 

$(PROGRAM_NAME) : ModernDate.o ISO8601dateStringConv.o \
		  UserMessage.o ModernDateValidator.o 

ModernDateValidator.o :

ModernDate.o :

ISO8601dateStringConv.o :

UserMessage.o :

.PHONY : clean
clean:
	rm *.o ${PROGRAM_NAME}
