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 (33 lines) | stat: -rw-r--r-- 505 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
#
# $Id: Makefile,v 3.5 1997/01/01 06:52:03 morioka Exp morioka $
#

EMACS	= emacs
FLAGS   = -batch -q -no-site-file -l MEL-MK

PREFIX =

RM	= /bin/rm -f
CP	= /bin/cp -p
TAR	= gtar

GOMI	= *.elc
FILES	= mel/*.el mel/Makefile mel/MEL-MK mel/MEL-ELS mel/ChangeLog \
		apel/*.el emu/*.el

TARFILE = mel-5.6.tar.gz


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

install:	elc
	$(EMACS) $(FLAGS) -f install-mel $(PREFIX)

clean:
	-$(RM) $(GOMI)
	cd ../tl && make clean


tar:
	cd ..; $(TAR) cvzf $(TARFILE) $(FILES)