#
# clx12unwrapper makefile
# "Command Line X12 Unwrapper"
#
#      created by Robert Leyva
#
PROGRAM_NAME = clx12unwrapper

#
# 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) : Rxl_x12.o pipeline.o trimline.o

Rxl_x12.o :

pipeline.o :

trimline.o :

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