Add files via upload

This commit is contained in:
mmmdbybyd
2018-11-28 12:14:35 +08:00
committed by GitHub
parent 9f1299e721
commit f5cb1c8e02
6 changed files with 81 additions and 47 deletions

View File

@@ -1,6 +1,12 @@
OBJ := SpecialProxy
CC := gcc
CFLAGS := -O3 -Wall -pthread
CFLAGS := -O2 -Wall -pthread
#如果是安卓编译
ifeq ($(ANDROID_DATA),/data)
CFLAGS := -O2 -pie -Wall
SHELL = /system/bin/sh
endif
all : main.o http.o dns.o
$(CC) $(CFLAGS) $(DEFS) -o $(OBJ) $^