28 lines
559 B
Makefile
28 lines
559 B
Makefile
|
CXX = g++
|
||
|
RM = rm
|
||
|
CXXFLAGS = $(shell sdl2-config --cflags)
|
||
|
LDLIBS = $(shell sdl2-config --libs) -lSDL2_image
|
||
|
|
||
|
SOURCES = $(wildcard src/*.cpp)
|
||
|
OBJETS = $(patsubst %.cpp,%.cpp.o,$(notdir $(SOURCES)))
|
||
|
|
||
|
EXE = quadtree
|
||
|
|
||
|
%.cpp.o: src/%.cpp
|
||
|
$(CXX) -c -o $@ $< $(CXXFLAGS)
|
||
|
|
||
|
main: CXXFLAGS += -O3
|
||
|
main: compilation
|
||
|
|
||
|
dev: CXXFLAGS += -Wall -Wextra -Wshadow -Wnon-virtual-dtor -pedantic -g -Wold-style-cast -Wsign-conversion
|
||
|
dev: compilation
|
||
|
|
||
|
compilation: $(OBJETS)
|
||
|
$(CXX) -o $(EXE) $(OBJETS) $(LDLIBS)
|
||
|
|
||
|
all:
|
||
|
main
|
||
|
|
||
|
clean:
|
||
|
$(RM) $(OBJETS) $(EXE)
|