summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFulian Li <[email protected]>2023-07-05 07:27:36 +0000
committerFulian Li <[email protected]>2023-07-05 07:27:36 +0000
commitc3acaacfedb9d173c4777373cf8b00e997c5736f (patch)
treecc387dda3deeb2f2b59df380dbf98f08579cd5b3
parent5a3981c53dc2b60a2b0a6fb0a8691120d53bf5fd (diff)
Upload New File
-rw-r--r--makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..313f48d
--- /dev/null
+++ b/makefile
@@ -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)