older epoll impl

This commit is contained in:
2026-01-11 20:11:25 +00:00
parent 7299f7bc4c
commit 4121154e21
3 changed files with 165 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
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