congestvpn/Makefile

20 lines
280 B
Makefile
Raw Normal View History

2020-06-02 13:08:23 +02:00
CXX=g++
CXXFLAGS=-O2 -g -Wall -Wextra -std=c++17
CXXLIBS=
OBJS=TunDevice.o util.o main.o
TARGET=congestvpn
all: $(TARGET)
$(TARGET): $(OBJS)
$(CXX) $(CXXFLAGS) $(CXXLIBS) -o $@ $^
%.o: %.cpp
$(CXX) $(CXXFLAGS) -c -o $@ $<
clean:
rm -f $(OBJS) $(TARGET)
.PHONY: all clean