home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / may94 / util / edit / jade.lha / Jade / DMakefile < prev    next >
Makefile  |  1994-04-18  |  1KB  |  64 lines

  1. # DMakefile for Amiga version of Jade (dmake == Matt Dillon's make)
  2. # Copyright (C) 1993, 1994 John Harper <jsh@ukc.ac.uk>
  3.  
  4. # Jade is free software; you can redistribute it and/or modify it
  5. # under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8.  
  9. # Jade is distributed in the hope that it will be useful, but
  10. # WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.    See the
  12. # GNU General Public License for more details.
  13.  
  14. # You should have received a copy of the GNU General Public License
  15. # along with Jade; see the file COPYING.  If not, write to
  16. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. MAKE = dmake
  19.  
  20. # Extra make flags.
  21. XMF =
  22.  
  23. jade :
  24.     cd src
  25.     $(MAKE) jade $(XMF)
  26.     cd
  27.  
  28. lsp :
  29.     cd lisp
  30.     $(MAKE) $(XMF)
  31.     cd
  32.  
  33. man :
  34.     cd doc
  35.     $(MAKE) man $(XMF)
  36.     cd
  37.  
  38. info :
  39.     cd doc
  40.     $(MAKE) jade.info $(XMF)
  41.     cd
  42.  
  43. nobak :
  44.     -delete  #?~ #?/#?~
  45.  
  46. clean :
  47.     cd src
  48.     $(MAKE) clean
  49.     cd /doc
  50.     $(MAKE) clean
  51.     cd /lisp
  52.     $(MAKE) clean
  53.     cd
  54.  
  55. realclean :
  56.     cd src
  57.     $(MAKE) realclean
  58.     cd /doc
  59.     $(MAKE) realclean
  60.     cd /lisp
  61.     $(MAKE) realclean
  62.     cd
  63.     -delete jade
  64.