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

#
# CXXFLAGS
# used by gnu make's implicit rules
#
# I choose to show all warnings (-Wall), and include debugging information (-g)
# I choose to include support for C++11 (-std=c++11);
#   the g++ version in my Debian Stable, g++ version 4.9.2,
#   requires it to use std::thread
# I choose to include support for pthreads (-pthread)
#   the g++ version in my Debian Stable, g++ version 4.9.2,
#   requires it to use std::thread
#
CXXFLAGS := -Wall -g -std=c++11 -pthread

#
# LDLIBS
# used by gnu make's implicit rules
#
# Since I am using the ncurses library, I choose to include the ncurses library
#
#LDLIBS := -lncurses

#
# Compile using gnu make implicit rules
#
$(PROGRAM_NAME) : cppMtClock.cpp mtFifoQueue.o


mtFifoQueue.o :


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