| 123456789101112131415161718192021222324252627282930313233 |
- #
- # 3 proxy Makefile for Intel C compiler for Windows (for both make and nmake)
- #
- # You can try to remove -DWITH_STD_MALLOC to CFLAGS to use optimized malloc
- # libraries
- #
- # Add /DSAFESQL to CFLAGS if you are using poorely written/tested ODBC driver
- BUILDDIR = ../bin/
- CC = icl
- CFLAGS = /nologo /MD /W3 /G6 /GX /O2 /D "WITH_STD_MALLOC" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "_WIN32" /Fp"proxy.pch" /YX /FD /c
- COUT = /Fo
- LN = xilink
- LDFLAGS = /nologo /subsystem:console /incremental:no /machine:I386
- LIBS = ws2_32.lib advapi32.lib odbc32.lib user32.lib
- DLFLAGS = /DLL
- DLSUFFICS = .dll
- LNOUT = /out:
- EXESUFFICS = .exe
- OBJSUFFICS = .obj
- DEFINEOPTION = /D
- COMPFILES = *.pch *.idb
- REMOVECOMMAND = del 2>NUL
- TYPECOMMAND = type
- COMPATLIBS =
- MAKEFILE = Makefile.intl
- PLUGINS = WindowsAuthentication TrafficPlugin PCREPlugin
- include Makefile.inc
- allplugins:
- for /D %%i in ($(PLUGINS)) do (copy Makefile Makefile.var plugins\%%i && cd plugins\%%i && nmake && del *.obj *.idb &&cd ..\..)
|