CXXFLAGS=-O3
CXX=/usr/bin/g++

all: nihil

clean:
	rm -f nihil *.o

%.o: %.c
	$(CXX) $(CXXFLAGS) -c -o $@ $<

nihil: nihil.c
	$(CXX) $(CXXFLAGS) nihil.c -o nihil -lm -lSDL -lSDL_ttf -lSDL_mixer -lSDL_image
