game
This commit is contained in:
20
makefile
Normal file
20
makefile
Normal file
@@ -0,0 +1,20 @@
|
||||
CXX = g++
|
||||
LDFLAGS = `sdl2-config --libs` -l SDL2_ttf -l SDL2_mixer
|
||||
CXXFLAGS = `sdl2-config --cflags` -pedantic -O2 -std=c++17 -lX11 -lstdc++fs -I include
|
||||
SRC = $(wildcard src/*.cpp)
|
||||
OBJ = $(addprefix build/, $(notdir $(SRC:.cpp=.o)))
|
||||
TARGET = build/x86_64/main.x86_64
|
||||
|
||||
all: clean dirs $(TARGET)
|
||||
|
||||
dirs:
|
||||
@mkdir -p build/x86_64
|
||||
|
||||
$(TARGET): $(OBJ)
|
||||
$(CXX) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
build/%.o: src/%.cpp
|
||||
$(CXX) -c -o $@ $< $(CXXFLAGS)
|
||||
|
||||
clean:
|
||||
@rm -f $(OBJ) $(TARGET)
|
Reference in New Issue
Block a user