CXX      ?= g++
CXXFLAGS ?= -std=c++11 -Wall -Wextra -g
SDLFLAGS := $(shell sdl2-config --cflags --libs) -lSDL2_ttf -lSDL2_image

PLOT_SRC := plot.cpp

SRC ?= demo.cpp
OUT ?= demo

all:
	$(CXX) $(CXXFLAGS) -o $(OUT) $(SRC) $(PLOT_SRC) $(SDLFLAGS)

clean:
	rm -f $(OUT) *.o
