win32.mak
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:0k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. # Makefile for Microsoft Visual C++ 5.0 (or compat)
  2. # Top-file makefile for Win32 parts of postgresql.
  3. # Note that most parts are not ported to Win32!
  4. !IF "$(OS)" == "Windows_NT"
  5. NULL=
  6. !ELSE 
  7. NULL=nul
  8. !ENDIF 
  9. !IFDEF MULTIBYTE
  10. MAKEMACRO = "MULTIBYTE=$(MULTIBYTE)"
  11. !ENDIF
  12. ALL: 
  13.    cd interfaceslibpq
  14.    nmake /f win32.mak $(MAKEMACRO)
  15.    cd ....binpsql
  16.    nmake /f win32.mak $(MAKEMACRO)
  17.    cd ....
  18.    echo All Win32 parts have been built!