home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Makefiles / lib / Makefile.programs < prev    next >
Encoding:
Makefile  |  1994-05-30  |  879 b   |  38 lines

  1. # Makefile.programs
  2. #
  3. # by Mike Ferris
  4. # Part of MOKit
  5. # Copyright 1993, all rights reserved
  6. #
  7. # Used in the MiscKit by permission, modifications (C) 1994 by Don Yacktman.
  8. #
  9. # This is based on Next's standard library make architecture
  10.  
  11. ##################### Programs used by the make #####################
  12.  
  13. CC = /bin/cc
  14. PSWRAP = /usr/bin/pswrap
  15. LEX = /usr/bin/lex
  16. YACC = /usr/bin/yacc
  17. MV = /bin/mv
  18. MAKE = /bin/make
  19. AR = /bin/ar
  20. LIBTOOL = /bin/libtool
  21. CP = /bin/cp
  22. ECHO = echo
  23. CD = cd
  24. MKDIRS = /bin/mkdirs
  25. RANLIB = /bin/ranlib
  26. TAR = /bin/tar
  27. CHMOD = /bin/chmod
  28. RM = /bin/rm
  29. INSTALL = /usr/bin/install
  30. BASENAME = /usr/bin/basename
  31. TOUCH = /usr/bin/touch
  32. ARCHIFY = /usr/lib/arch_tool -archify_list
  33.  
  34. # use libtool as the archiver for fat or thin libraries on 3.1 or higher.
  35. ARCHIVER = $(LIBTOOL) $(LIBTOOLFLAGS)
  36. # use ar under 3.0 or for thin libraries.
  37. #ARCHIVER = $(AR) $(ARFLAGS)
  38.