Files
cpp-implementations/hello-epoll/Makefile
2026-01-11 20:11:25 +00:00

14 lines
204 B
Makefile

CXX = g++
CXXFLAGS = -Wall -Wextra -std=c++11
TARGET = hello-epoll
all: $(TARGET)
$(TARGET): hello-epoll.cpp
$(CXX) $(CXXFLAGS) -o $(TARGET) hello-epoll.cpp
clean:
rm -f $(TARGET)
.PHONY: all clean