OSDN Git Service

fix typo in ChangeLog (2015-02-03) (2015-02-02)
[tamago-tsunagi/tamago-tsunagi.git] / Makefile.in
index e0de98f..da3ccb7 100644 (file)
@@ -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 <bkbin005@rinku.zaq.ne.jp>
+#               2015 ARAI Shun-ichi <hermes@ceres.dti.ne.jp>
 # Author: NIIBE Yutaka <gniibe@chroot.org>
 #         TOMURA Satoru <tomura@etl.go.jp>
-# Maintaner: Satoru Tomura <tomura@etl.go.jp>
 
 .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 \