Upload New File

This commit is contained in:
Fulian Li
2023-07-05 07:27:36 +00:00
parent 5a3981c53d
commit c3acaacfed

16
makefile Normal file
View File

@@ -0,0 +1,16 @@
CXX = g++
CXXFLAGS = -std=c++11 -Wall -Wextra
LDFLAGS = -lssl -lcrypto
TARGET = test
SRCS = quic_lfl.cpp
.PHONY: all clean
all: $(TARGET)
$(TARGET): $(SRCS)
$(CXX) $(CXXFLAGS) $(SRCS) -o $(TARGET) $(LDFLAGS)
clean:
rm -f $(TARGET)