Files
ALPHA-TRAIN2/services 4/arena-battle/Makefile
T
2026-08-26 11:01:46 +03:00

14 lines
202 B
Makefile

CXX = g++
CXXFLAGS = -std=c++17 -pthread -Wall -Wextra -O2
TARGET = server
all: $(TARGET)
$(TARGET): server.cpp
$(CXX) $(CXXFLAGS) -o $(TARGET) server.cpp
clean:
rm -f $(TARGET)
.PHONY: all clean