egg-980402.
[elisp/egg.git] / Makefile
1 # Makefile --- Makefile of EGG V4.0
2
3 # Copyright (C) 1997, 1998 Mule Project,
4 # Powered by ElectrotechnicalLaboratory, JAPAN.
5 # Project Leader: Satoru Tomura <tomura@etl.go.jp>
6
7 DOTEMACS=/home/niibe/.emacs
8 LEIMDIR=/usr/local/share/emacs/20.2.892/leim
9 SITEDIR=/usr/local/share/emacs/site-lisp
10
11 INSTALL=/usr/bin/install
12 ######
13
14 DEPS = -l ./docomp.el
15 BATCHFLAGS = -batch -q -no-site-file
16 EMACS = emacs
17
18 .SUFFIXES: .el .elc
19
20 ETCS = Makefile leim-list-egg.el AUTHORS ChangeLog README TODO docomp.el \
21        Egg.prj PROBLEMS
22
23 SRCS = menudiag.el its.el egg.el \
24        its/ascii.el \
25        its/erpin.el \
26        its/hankata.el \
27        its/hira.el \
28        its/jeonkak.el \
29        its/pinyin.el \
30        its/hangul.el \
31        its/kata.el \
32        its/quanjiao.el \
33        its/zenkaku.el \
34        its/zhuyin.el \
35        its-keydef.el \
36        egg-mlh.el egg-cnv.el egg-com.el \
37        egg/sj3.el egg/sj3rpc.el \
38        egg/wnn.el egg/wnnrpc.el
39
40 ELCS = ${SRCS:.el=.elc}
41
42 DIST = ${ETCS} ${SRCS}
43
44 .el.elc:
45         ${EMACS} ${BATCHFLAGS} ${DEPS} -f batch-byte-compile $<
46
47 all: ${ELCS}
48
49 clean: 
50         rm -f ${ELCS} leim-list.el
51
52 dotemacs:
53         @if (grep "^;;; Emacs/Egg Configuration" $(DOTEMACS) 2>&1) >/dev/null; then \
54                 echo Emacs/Egg setup already exists in $(DOTEMACS);     \
55         else                                                            \
56                 (echo >> $(DOTEMACS)); \
57                 (echo ";;; Emacs/Egg Configuration" >> $(DOTEMACS)); \
58                 (echo "(require 'egg)" >> $(DOTEMACS)); \
59                 echo "Added Emacs/Egg setup to $(DOTEMACS)"; \
60         fi
61
62 leim-list.el:
63         @if (grep ";;; Egg" ${LEIMDIR}/leim-list.el 2>&1) >/dev/null; then \
64           echo Egg setup already exists in ${LEIMDIR}/leim-list.el; \
65           cat ${LEIMDIR}/leim-list.el  >leim-list.el; \
66         else                                                            \
67           cat ${LEIMDIR}/leim-list.el leim-list-egg.el >leim-list.el; \
68         fi
69
70 install-dirs:
71         for d in its egg; do \
72           if [ ! -d ${SITEDIR}/$$d ]; then mkdir -p ${SITEDIR}/$$d; fi; \
73         done
74
75 install: all dotemacs leim-list.el install-dirs
76         for x in ${SRCS} ${ELCS}; do $(INSTALL) -m 644 $$x ${SITEDIR}/`dirname $$x`; done
77         $(INSTALL) -m 644 leim-list.el ${SITEDIR}
78
79 # DEPENDENCIES
80 egg/sj3rpc.elc: egg-com.elc egg/sj3.elc
81 egg/wnnrpc.elc: egg-com.elc egg/wnn.elc
82
83 egg.elc its/ascii.elc its/erpin.elc its/hankata.elc \
84        its/hira.elc its/jeonkak.elc its/pinyin.elc \
85        its/hangul.elc its/kata.elc its/quanjiao.elc \
86        its/zenkaku.elc its/zhuyin.elc: its-keydef.elc
87
88 distclean:
89         rm -f ${ELCS} leim-list.el *~
90
91 ###  Source code maintainance
92 DATE=$(shell date "+%y%m%d")
93
94 dist: distclean
95         rm -rf ../egg-${DATE}
96         mkdir ../egg-${DATE}
97         tar -c -f - ${DIST} | tar Cxf ../egg-${DATE} -
98         (cd ../egg-${DATE}; \
99          sed "/^### Source code maintainance/,\$$d" <Makefile >Makefile.dist; \
100          mv -f Makefile.dist Makefile)
101         (cd ..; tar cvzf egg-${DATE}.tar.gz egg-${DATE})
102
103 working-ss: distclean
104         rm -rf ../egg-snap-${DATE}
105         mkdir ../egg-snap-${DATE}
106         tar -c -f - . | tar Cxf ../egg-snap-${DATE} -
107         (cd ..; tar cvzf egg-snap-${DATE}.tar.gz egg-snap-${DATE})