forked from scott/threaded_network_chat
refactor: initial commit
This commit is contained in:
15
old/Makefile
Normal file
15
old/Makefile
Normal file
@@ -0,0 +1,15 @@
|
||||
# Compiler and flags
|
||||
CXX = g++
|
||||
CXXFLAGS = -pthread -Wall -Wextra -O2 -std=c++17 -lcurses
|
||||
|
||||
# Targets
|
||||
all: main
|
||||
|
||||
# Client build
|
||||
main: main.cpp
|
||||
$(CXX) $(CXXFLAGS) main.cpp -o main
|
||||
|
||||
# Clean build artifacts
|
||||
clean:
|
||||
rm -f main
|
||||
|
||||
Reference in New Issue
Block a user