mirror of https://github.com/ValdikSS/GoodbyeDPI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
747 B
33 lines
747 B
CPREFIX = x86_64-w64-mingw32
|
|
WINDIVERTHEADERS = ../../include
|
|
WINDIVERTLIBS = ../binary
|
|
|
|
TARGET = goodbyedpi.exe
|
|
LIBS = -L $(WINDIVERTLIBS) -lWinDivert -lws2_32
|
|
CC = $(CPREFIX)-gcc
|
|
CCWINDRES = $(CPREFIX)-windres
|
|
CFLAGS = -Wall -I $(WINDIVERTHEADERS) -L $(WINDIVERTLIBS) \
|
|
-O2 -fPIE -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2
|
|
|
|
.PHONY: default all clean
|
|
|
|
default: manifest $(TARGET)
|
|
all: default
|
|
|
|
OBJECTS = $(patsubst %.c, %.o, $(wildcard *.c)) goodbyedpi-rc.o
|
|
HEADERS = $(wildcard *.h)
|
|
|
|
%.o: %.c $(HEADERS)
|
|
$(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
manifest:
|
|
$(CCWINDRES) goodbyedpi-rc.rc goodbyedpi-rc.o
|
|
|
|
.PRECIOUS: $(TARGET) $(OBJECTS)
|
|
|
|
$(TARGET): $(OBJECTS)
|
|
$(CC) $(OBJECTS) -Wall $(LIBS) -s -o $@
|
|
|
|
clean:
|
|
-rm -f *.o
|
|
-rm -f $(TARGET)
|
|
|