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 (37 lines) | stat: -rw-r--r-- 756 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
#
# $Id: Makefile,v 1.1 1996/11/27 15:38:38 morioka Exp morioka $
#

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

PREFIX =

BITMAP_FILES =	bitmap-mule/Makefile bitmap-mule/BITMAP-* \
		bitmap-mule/*.el bitmap-mule/*.bdf bitmap-mule/README.en

MU_FILES =	mu/MU-ELS mu/*.el mu/ChangeLog

TL_FILES =	tl/README.en tl/Makefile tl/mk-tl tl/TL-ELS \
		tl/*.el tl/doc/*.ol tl/doc/*.tex tl/doc/*.texi tl/ChangeLog

EMU_FILES =	emu/EMU-ELS emu/*.el emu/ChangeLog

FILES =		$(BITMAP_FILES) $(MU_FILES) $(TL_FILES) $(EMU_FILES)

TARFILE = bitmap-mule-7.15.tar


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

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


clean:
	-rm *.elc


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