home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / new / util / edit / jade / lisp / makefile < prev    next >
Makefile  |  1994-06-19  |  1KB  |  44 lines

  1. # Makefile for Jade's Lisp files
  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. # defaults
  19. bindir = ../src
  20. lispdir = .
  21.  
  22. all :
  23.  
  24. lisp :
  25.     $(bindir)/jade -geometry +0+0 -log-msgs -f sleep-window -f compile-lisp-lib -q
  26.  
  27. install :
  28.     for f in *.jl; \
  29.     do \
  30.       $(INSTALL_DATA) $$f $(lispdir)/$$f; \
  31.     done
  32.     $(INSTALL_DATA) ../DOC $(lispdir)/../DOC
  33.     $(bindir)/jade -geometry +0+0 -log-msgs -f sleep-window -f compile-lisp-lib -q
  34.  
  35. uninstall :
  36.     -rm -f $(lispdir)/*.jl $(lispdir)/*.jlc $(lispdir)/../DOC
  37.  
  38. clean :
  39.     -rm -f *.jlc *~
  40.     -cp ../src/DOC.bare ../DOC
  41.  
  42. realclean : clean
  43.     -rm -f ../DOC
  44.