mirror of
https://github.com/3proxy/3proxy.git
synced 2026-04-10 15:10:11 +08:00
Some checks are pending
RPM/DEB build aarch64 / ${{ matrix.target }} (ubuntu-24.04-arm) (push) Waiting to run
RPM/DEB build armhf / ${{ matrix.target }} (ubuntu-latest) (push) Waiting to run
RPM/DEB build x86-64 / ${{ matrix.target }} (ubuntu-latest) (push) Waiting to run
Build Win32 3proxy-lite with Watcom / ${{ matrix.target }} (windows-2022) (push) Waiting to run
Build Win32 3proxy with MSVC / ${{ matrix.target }} (windows-2022) (push) Waiting to run
Build Win64 3proxy with MSVC / ${{ matrix.target }} (windows-2022) (push) Waiting to run
Build Win-arm64 3proxy with MSVC / ${{ matrix.target }} (windows-2022) (push) Waiting to run
42 lines
1.4 KiB
Makefile
42 lines
1.4 KiB
Makefile
#
|
|
# 3 proxy Makefile for Microsoft Visual C compiler (for both make and nmake)
|
|
#
|
|
#
|
|
# Add /DSAFESQL to CFLAGS if you are using poorely written/tested ODBC driver
|
|
|
|
BUILDDIR = ../bin/
|
|
CC = cl
|
|
VERSION = $(VERSION)
|
|
BUILDDATE = $(BUILDDATE)
|
|
CFLAGS = /nologo /MT /W3 /Ox /GS /EHs- /GA /GF /D "MSVC" /D "WITH_WSAPOLL" /D "NDEBUG" /D "WIN32" /D "WITH_SSL" /D "_CONSOLE" /D "_MBCS" /D "_WIN32" /Fp"proxy.pch" /FD /c $(BUILDDATE) $(VERSION)
|
|
COUT = /Fo
|
|
LN = link
|
|
LDFLAGS = /nologo /subsystem:console /incremental:no
|
|
DLFLAGS = /DLL
|
|
DLSUFFICS = .dll
|
|
LIBS = ws2_32.lib advapi32.lib odbc32.lib user32.lib kernel32.lib Gdi32.lib Crypt32.lib libcrypto.lib libssl.lib
|
|
LIBSPREFIX =
|
|
LIBSSUFFIX = .lib
|
|
LIBEXT = .lib
|
|
LNOUT = /out:
|
|
EXESUFFICS = .exe
|
|
OBJSUFFICS = .obj
|
|
DEFINEOPTION = /D
|
|
COMPFILES = *.pch *.idb
|
|
REMOVECOMMAND = del
|
|
TYPECOMMAND = type
|
|
COMPATLIBS =
|
|
MAKEFILE = Makefile.msvc
|
|
PLUGINS = utf8tocp1251 WindowsAuthentication TrafficPlugin StringsPlugin FilePlugin SSLPlugin PCREPlugin
|
|
VERFILE = 3proxy.res $(VERFILE)
|
|
VERSIONDEP = 3proxy.res $(VERSIONDEP)
|
|
AFTERCLEAN = if exist src\*.res (del src\*.res) && if exist src\*.err (del src\*.err)
|
|
|
|
include Makefile.inc
|
|
|
|
3proxy.res:
|
|
rc 3proxy.rc
|
|
|
|
allplugins:
|
|
for /D %%i in ($(PLUGINS)) do (copy Makefile plugins\%%i && copy Makefile.var plugins\%%i && cd plugins\%%i && nmake && del *.obj *.idb &&cd ..\..)
|
|
|