File: Makefile

package info (click to toggle)
tm 7.106.0-2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 3,172 kB
  • ctags: 1,369
  • sloc: lisp: 16,585; makefile: 314; sh: 297; ansic: 122
file content (42 lines) | stat: -rw-r--r-- 847 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#
# $Id: Makefile,v 7.2 1996/03/04 09:11:19 morioka Exp morioka $
#

EMACS	= mule
FLAGS   = -batch -q -no-site-file -l mk-tl


# Please specfy Emacs Lisp install directory:
#	TLDIR18 = for Emacs 18.* (NEMACS, NEpoch or MULE 1)
#	TLDIR19 = for Emacs 19.* (FSF original, XEmacs or MULE 2)

#TLDIR18 = /usr/local/lib/emacs/local.lisp
#TLDIR19 = /usr/local/lib/mule/site-lisp

TLDIR18 = $(HOME)/lib/emacs18/lisp
TLDIR19 = $(HOME)/lib/emacs19/lisp


FILES	= tl/README.en tl/Makefile tl/mk-tl tl/tl-els \
		tl/*.el tl/*.bdf \
		tl/doc/*.ol tl/doc/*.tex tl/doc/*.texi tl/ChangeLog

TARFILE = tl-7.43.1.tar


elc:
	$(EMACS) $(FLAGS) -f compile-tl

install-18:	elc
	$(EMACS) $(FLAGS) -f install-tl $(TLDIR18)

install-19:	elc
	$(EMACS) $(FLAGS) -f install-tl $(TLDIR19)


clean:
	-rm *.elc *~


tar:
	cd ..; tar cvf $(TARFILE) $(FILES); gzip -9 $(TARFILE)