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

  1.  
  2. #
  3. # Definitions pertaining to operating system HP-UX
  4. #
  5.  
  6. # Define the name of this O.S. here.
  7. #
  8. OS=        hpux
  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. # (In some cases these are architecture-dependent)
  26. #
  27. LIBTERMCAP=    -ltermcap
  28. LIBX11=        -lX11
  29.  
  30. # Similar for the math library
  31. #
  32. LIBMATH=    -lm
  33.  
  34. # Other OS-specific choices (-I flags, -D flags, compiler options)
  35. #
  36. OSINCLS=    -I/usr/include/X11R4
  37. OSDEFS=        -DSYSV
  38. OSOPTS=        
  39.