home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume28 / m0 / part01 / Makefile < prev    next >
Makefile  |  1994-06-05  |  783b  |  46 lines

  1. # Makefile for M0
  2. # christian tschudin, may 1994
  3.  
  4. # possible values for "OS":
  5. #    so4        for SunOS 4.1.3
  6. #    so5        for SunOS 5.1 (aka Solaris 2.1)
  7. #    ult        for DEC Ultrix v4.3
  8. #    osf        for DEC OSF/1 v1.3
  9. #    dos        for MS/DOS >5.x
  10. #
  11. OS=so4
  12.  
  13.  
  14. # default paths where binaries, M0 files and man pages
  15. # should be installed and/or can be found:
  16.  
  17. # be explicit for MS/DOS:
  18. #CWD=\\\\cft\\\\msgr\\\\src
  19. # so4
  20. CWD=$(PWD)
  21. # so5 and osf:
  22. #CWD=/user/u2/tschudin/msgr/src
  23. # ult:
  24. #CWD=/guru/tschudin/m0
  25.  
  26. M0DEFBINPATH=$(CWD)
  27. M0DEFLIBPATH=$(CWD)
  28. M0DEFMANPATH=$(CWD)
  29.  
  30.  
  31. # add -DDEBUG for enabling tracing information
  32. COPT= -DDEBUG
  33.  
  34. # -------------------------------------------------------------------------
  35. # here we go ...
  36.  
  37. include makefile.$(OS)
  38.  
  39. all: exefiles
  40.  
  41. include makefile.all
  42.  
  43. exefiles: $(EXEFILES)
  44.  
  45. # eof
  46.