home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / new / util / edit / jade / dmakefile < prev    next >
Makefile  |  1994-06-27  |  1KB  |  46 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. all :
  21.     cd src
  22.     $(MAKE) all
  23.     cd
  24.  
  25. nobak :
  26.     -delete  #?~ #?/#?~
  27.  
  28. clean :
  29.     cd src
  30.     $(MAKE) clean
  31.     cd /man
  32.     $(MAKE) clean
  33.     cd /lisp
  34.     $(MAKE) clean
  35.     cd
  36.  
  37. realclean :
  38.     cd src
  39.     $(MAKE) realclean
  40.     cd /man
  41.     $(MAKE) realclean
  42.     cd /lisp
  43.     $(MAKE) realclean
  44.     cd
  45.     -delete jade
  46.