Add Makefile

This commit is contained in:
Mylloon 2022-05-08 15:56:11 +02:00
parent a4754d03bb
commit 526512dbf8
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

27
Makefile Normal file
View file

@ -0,0 +1,27 @@
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)