Makefile.intl 996 B

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # 3 proxy Makefile for Intel C compiler for Windows (for both make and nmake)
  3. #
  4. # You can try to remove -DWITH_STD_MALLOC to CFLAGS to use optimized malloc
  5. # libraries
  6. #
  7. # Add /DSAFESQL to CFLAGS if you are using poorely written/tested ODBC driver
  8. BUILDDIR = ../bin/
  9. CC = icl
  10. 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
  11. COUT = /Fo
  12. LN = xilink
  13. LDFLAGS = /nologo /subsystem:console /incremental:no /machine:I386
  14. LIBS = ws2_32.lib advapi32.lib odbc32.lib user32.lib
  15. DLFLAGS = /DLL
  16. DLSUFFICS = .dll
  17. LNOUT = /out:
  18. EXESUFFICS = .exe
  19. OBJSUFFICS = .obj
  20. DEFINEOPTION = /D
  21. COMPFILES = *.pch *.idb
  22. REMOVECOMMAND = del 2>NUL
  23. TYPECOMMAND = type
  24. COMPATLIBS =
  25. MAKEFILE = Makefile.intl
  26. PLUGINS = WindowsAuthentication TrafficPlugin PCREPlugin
  27. include Makefile.inc
  28. allplugins:
  29. for /D %%i in ($(PLUGINS)) do (copy Makefile Makefile.var plugins\%%i && cd plugins\%%i && nmake && del *.obj *.idb &&cd ..\..)