Makefile.msvcCE 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #$Id: Makefile.msvc,v 1.14 2007/07/21 18:47:02 vlad Exp $
  2. #
  3. # 3 proxy Makefile for Microsoft Visual C compiler (for both make and nmake)
  4. #
  5. # You can try to remove -DWITH_STD_MALLOC to CFLAGS to use optimized malloc
  6. # libraries
  7. #
  8. # Add /DSAFESQL to CFLAGS if you are using poorely written/tested ODBC driver
  9. BUILDDIR = ../bin/
  10. CC = cl
  11. CFLAGS = /DARM /D "NOODBC" /nologo /MT /W3 /Wp64 /Ox /GS /EHs- /GA /GF /D "MSVC" /D "_WINCE" /D "WITH_STD_MALLOC" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "_WIN32" /Fp"proxy.pch" /FD /c
  12. COUT = /Fo
  13. LN = link
  14. LDFLAGS = /nologo /subsystem:console /incremental:no
  15. DLFLAGS = /DLL
  16. DLSUFFICS = .dll
  17. LIBS = ws2_32.lib advapi32.lib odbc32.lib user32.lib
  18. LIBEXT = .lib
  19. LNOUT = /out:
  20. EXESUFFICS = .exe
  21. OBJSUFFICS = .obj
  22. DEFINEOPTION = /D
  23. COMPFILES = *.pch *.idb
  24. REMOVECOMMAND = del 2>NUL >NUL
  25. TYPECOMMAND = type
  26. COMPATLIBS =
  27. MAKEFILE = Makefile.msvc
  28. PLUGINS = WindowsAuthentication TrafficPlugin StringsPlugin PCREPlugin
  29. include Makefile.inc
  30. allplugins:
  31. for /D %%i in ($(PLUGINS)) do (copy Makefile plugins\%%i && copy Makefile.var plugins\%%i && cd plugins\%%i && nmake && del *.obj *.idb &&cd ..\..)