Files
Network_experiment/network more complicated/Makefile
2026-02-25 08:40:42 -06:00

20 lines
307 B
Makefile

# Compiler and flags
CXX = g++
CXXFLAGS = -Wall -Wextra -O2 -std=c++17
# Targets
all: client server
# Client build
client: client.cpp
$(CXX) $(CXXFLAGS) client.cpp -o client
# Server build
server: server.cpp
$(CXX) $(CXXFLAGS) server.cpp -o server
# Clean build artifacts
clean:
rm -f client server