This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
lifulian-quic-block/makefile
2023-07-05 07:27:36 +00:00

17 lines
238 B
Makefile

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)