home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / intercal.zip / Makefile < prev    next >
Makefile  |  1996-06-22  |  635b  |  23 lines

  1. #
  2. # Utility productions for the INTERCAL distribution
  3. #
  4. VERSION = 0.15
  5. MANIFEST = `sed <intercal-$(VERSION)/MANIFEST -e "s/^/intercal-$(VERSION)\//"`
  6.  
  7. tgz: intercal-$(VERSION).tar.gz
  8. tar: intercal-$(VERSION).tar
  9.  
  10. intercal-$(VERSION).tar.gz: intercal-$(VERSION).tar
  11.     gzip -f intercal-$(VERSION).tar
  12. intercal-$(VERSION).tar:
  13.     (cd ..; tar cvf ick.tar $(MANIFEST))
  14.     mv ../ick.tar ./intercal-$(VERSION).tar
  15.  
  16. SHAROPTS = -l63 -n intercal -o intercal -a -s esr@snark.thyrsus.com 
  17. shar:
  18.     (cd ..; shar $(SHAROPTS) $(MANIFEST) >intercal-$(VERSION).shar)
  19.  
  20. clean:
  21.     rm -f intercal-$(VERSION).shar intercal-$(VERSION).tar intercal-$(VERSION).tar.gz
  22.  
  23.