home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xcu16.zip / config_file next >
Text File  |  1991-10-03  |  583b  |  23 lines

  1. /*
  2.  * Change XCUROOT below to match your xcu directory!
  3.  * Put this file into Project.tmpl or your .cf file in the config directory.
  4.  * imake considerations:
  5.  *   Specify -DUseInstalledXcu to get installed Xcu library and includes.
  6.  *   Don't specify it before installing Xcu
  7.  */
  8.  
  9. #ifndef _XcuUse
  10. #ifdef UseInstalledXcu
  11. #define _XcuUse(a,b) a
  12. #else
  13. #define _XcuUse(a,b) b
  14. #endif
  15. #endif
  16.  
  17.     XCUROOT = /usr/local/src/xcu
  18.     DEPXCULIB = _XcuUse($(USRLIBDIR),$(XCUROOT)/src)/libXcu.a
  19.     XCULIB = _XcuUse(-lXcu,$(DEPXCULIB))
  20.     XCUINCFLAG = _XcuUse(,-I$(XCUROOT)/src)
  21.  
  22. #undef _XcuUse
  23.