#A simple makefile

PROJ = cair
CC = g++
CFLAGS = -O3 -Wall -pthread

all :
	$(CC) $(CFLAGS) -o $(PROJ) main.cpp CAIR.cpp ./EasyBMP/EasyBMP.cpp

