annotate lisp/ilisp/Makefile @ 2:ac2d302a0011 r19-15b2

Import from CVS: tag r19-15b2
author cvs
date Mon, 13 Aug 2007 08:46:35 +0200
parents 376386a54a3c
children b82b59fe008d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 # -*- Mode: Makefile -*-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 # Makefile --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 # This file is part of ILISP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 # Version: 5.7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 #
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 # Copyright (C) 1990, 1991, 1992, 1993 Chris McConnell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 # 1993, 1994 Ivan Vasquez
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 # 1994, 1995 Marco Antoniotti and Rick Busdiecker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 #
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 # Send mail to 'ilisp-request@lehman.com' to be included in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 # ILISP mailing list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 #------------------------------------------------------------------------------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 # Various Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 #EMACS=xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 EMACS=emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 OtherFiles=README HISTORY Makefile ilisp.emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 DocFiles=ilisp.texi ilisp.ps.gz ilisp.info ilisp.info-1 ilisp.info-2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 Version=5.7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 LoadFiles=ilisp-def.elc ilisp-el.elc ilisp-sym.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ilisp-inp.elc ilisp-ind.elc ilisp-prc.elc ilisp-val.elc ilisp-out.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ilisp-mov.elc ilisp-key.elc ilisp-prn.elc ilisp-low.elc ilisp-doc.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ilisp-ext.elc ilisp-mod.elc ilisp-dia.elc ilisp-cmt.elc ilisp-rng.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ilisp-hnd.elc ilisp-utl.elc ilisp-cmp.elc ilisp-kil.elc ilisp-snd.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ilisp-xfr.elc ilisp-hi.elc ilisp-aut.elc ilisp-cl.elc ilisp-cmu.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ilisp-acl.elc ilisp-kcl.elc ilisp-luc.elc ilisp-sch.elc ilisp-hlw.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #------------------------------------------------------------------------------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 # Rules
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 compile:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 $(EMACS) -batch -l ilisp-mak.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 id:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 mkid -S.el=lisp *.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 tags:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 etags *.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 dist: tarring compressing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 tarring:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 tar cvf ilisp-$(Version).tar $(OtherFiles) *.el *.lisp *.lcd $(DocFiles) *.mail
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 compressing:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 gzip ilisp-$(Version).tar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 clean:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 $(RM) *.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 loadfile:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 touch ilisp-all.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 cat $(LoadFiles) > ilisp-all.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 rm $(LoadFiles)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 # Note that the redirection is done by a Bourne Shell.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 # end of file -- Makefile --