CFLAGS		= -Wall
LIBRARIES	= -L/usr/lib/mysql -lmysqlclient
SOURCES		= ConnectionOrganization.cpp Sorter.cpp ../Db_Query/Db_Query.cpp 
HEADERS		= ConnectionOrganization.h ../Db_Query/Db_Query.h
GCC		= g++

Sorter: ${SOURCES} ${HEADERS}
	${GCC} -o Sorter ${CFLAGS} ${LIBRARIES} -I.. ${SOURCES}


test: Sorter
	./Sorter

clean: 
	rm -f Sorter
