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)