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

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

#
# LDLIBS
# used by gnu make's implicit rules
#
# Since I am using the Boost filesystem library, I choose to include the Boost system library
# Since I am using the Boost filesystem library, I also choose to include the Boost filesystem library
#
LDLIBS := -lboost_system -lboost_filesystem

#
# Compile using gnu make implicit rules
#
$(PROGRAM_NAME) : trimline.o pipeline.o

trimline.o :

pipeline.o :


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