X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=Makefile.in;h=da3ccb78fd813beed1a7c3c8ea005af4c9afcb07;hb=0a91e86c5cbe781dfc4b5120f72d4a7f873fcbf7;hp=e0de98f4ce82dcc9b3237144be89e33cf3ff46f9;hpb=72077fc3f6aae1ecd49fde94cb5d0a7a3b1a086d;p=tamago-tsunagi%2Ftamago-tsunagi.git diff --git a/Makefile.in b/Makefile.in index e0de98f..da3ccb7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,9 +1,10 @@ # Makefile --- Makefile of Tamago-tsunagi -# Copyright (C) 1999, 2000 Free Software Foundation, Inc +# Copyright (C) 1999, 2000, 2015 Free Software Foundation, Inc +# 2015 Mitsutoshi NAKANO +# 2015 ARAI Shun-ichi # Author: NIIBE Yutaka # TOMURA Satoru -# Maintaner: Satoru Tomura .SUFFIXES: SHELL = @SHELL@ @@ -22,6 +23,7 @@ lispdir = @lispdir@ #------------------------------------------------ prefix = @prefix@ +datarootdir= @datarootdir@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -97,6 +99,7 @@ ITSELCS = ${ITSSRCS:.el=.elc} DIST = ${ETCS} ${SRCS} ${INITELS} +ETAGS = etags all: ${ELCS} @@ -106,16 +109,20 @@ all: ${ELCS} ${EMACS} ${BATCHFLAGS} ${DEPS} -f batch-byte-compile $< clean: - rm -f ${ELCS} *~ */*~ \#* .\#* */\#* */.\#* + rm -f ${ELCS} *~ */*~ \#* .\#* */\#* */.\#* TAGS -distclean: - rm -f ${ELCS} config.* Makefile +tags: + ${ETAGS} *.el egg/*.el its/*.el helper/*.c + +distclean: clean + rm -f ${ELCS} config.* Makefile + rm -rf autom4te.cache/ install: install-site install-site: all echo "Egg system will be installed in ${lispdir}/egg...."; \ - if [ -d -p ${DESTDIR}${lispdir}/egg ]; then \ + if [ -d ${DESTDIR}${lispdir}/egg ]; then \ echo "Clean up the previsous installation...."; \ rm -rf ${DESTDIR}${lispdir}/egg/*; \ else \