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

数据库系统

开发平台:

Unix_Linux

  1. #
  2. #
  3. #============ Default for all system ==============
  4. OS      = UNX
  5. SHELL   = /bin/sh
  6. AR      = ar r
  7. DLSUFFIX= so
  8. INCDIR = /include
  9. OBJX    =
  10. RANLIB  = ranlib
  11. INSTALL = /usr/bin/install
  12. INSTALL_DATA = $(INSTALL) -c -m 644
  13. MKDIR = mkdir
  14. DESTDIR = /usr/local
  15. LIBDIR = /lib
  16. INSTHEADERS = isql.h isqlext.h iodbc.h
  17. DESTLIBDIR = $(DESTDIR)$(LIBDIR)
  18. DESTINCDIR = $(DESTDIR)$(INCDIR)/iodbc
  19. ODBCSYSTEMDIR = /usr/home/gryschuk
  20. # Remove the comment characters from the section  you want to
  21. # use below, make sure all other sections are commented out.
  22. #============== Linux ELF =========================
  23. CC      = gcc
  24. PIC     = -fPIC
  25. CFLAGSX = -g
  26. #CFLAGSX = -g -Wall -DMY_LOG -DQ_LOG
  27. LDFLAGS = -shared
  28. LIBS    = -ldl
  29. #============= FreeBSD 2.x ========================
  30. # I don't know if this would work but you can always just try it.
  31. # PIC     = -fPIC
  32. # CFLAGSX = -g -Wall
  33. # LDFLAGS = -Bshareable
  34. # LIBS    = 
  35. #===| end of file 'Config.mk' |===