home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Libraries / stdwin / Conf / proto.os.xxx < prev    next >
Encoding:
Text File  |  1991-04-16  |  1.0 KB  |  40 lines  |  [TEXT/????]

  1.  
  2. #
  3. # Definitions pertaining to operating system XXX
  4. #
  5.  
  6. # Define the name of this O.S. here.
  7. #
  8. OS=        XXX
  9.  
  10. # Define the name of the script used to update the dependencies in
  11. # the Makefile.
  12. # Choices are:
  13. #    slowmkdep -- always works (as far as I know)
  14. #    fastmkdep -- uses cc -M, which isn't always available
  15. #    makedepend -- Todd Brunhoff's superfast tool (comes with X11)
  16. #                  (This needs -Dunix because of configure.h)
  17. # You may also place this definition in the proto.arch.* file if no
  18. # method works for every architecture supported by this OS.
  19. #
  20. MKDEP=        $(CONF)/slowmkdep
  21. MKDEP=        $(CONF)/fastmkdep
  22. MKDEP=        makedepend -Dunix
  23.  
  24. # Define the system libraries to link with programs that use termcap and X11.
  25. # (On SYSV it is often safer to link with -lcurses instead of -ltermcap.)
  26. # (In some cases these are architecture-dependent)
  27. #
  28. LIBTERMCAP=    -ltermcap
  29. LIBX11=        -lX11
  30.  
  31. # Similar for the math library
  32. #
  33. LIBMATH=    -lm
  34.  
  35. # Other OS-specific choices (-I flags, -D flags, compiler options)
  36. #
  37. OSINCLS=    
  38. OSDEFS=        
  39. OSOPTS=        
  40.