1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-13 16:38:14 +00:00
emacs/lisp/Makefile

50 lines
1.3 KiB
Makefile
Raw Normal View History

1997-04-11 11:56:09 +00:00
#
# Maintenance productions for the Lisp directory
#
1997-04-11 13:14:52 +00:00
EMACS = emacs
1997-04-11 11:56:09 +00:00
SOURCES = *.el COPYING Makefile
lisptagsfiles = [a-zA-Z]*.el */[a-zA-Z]*.el
1997-04-11 11:56:09 +00:00
1997-04-11 13:14:52 +00:00
doit:
custom-deps: doit
subdirs=`find . -type d -print`; \
for file in $$subdirs; do \
case $$file in */Old | */RCS) ;; \
*) wins="$$wins $$file" ;; \
esac; \
done; \
$(EMACS) -batch -l cus-dep.el -f custom-make-dependencies $$wins
finder-data: doit
subdirs=`find . -type d -print`; \
for file in $$subdirs; do \
case $$file in */Old | */RCS) ;; \
*) wins="$$wins $$file" ;; \
esac; \
done; \
$(EMACS) -batch -l finder -f finder-compile-keywords-make-dist $$wins
autoloads: doit
subdirs=`find . -type d -print`; \
for file in $$subdirs; do \
case $$file in */Old | */RCS) ;; \
*) wins="$$wins $$file" ;; \
esac; \
done; \
$(EMACS) -batch -f batch-update-autoloads $$wins
updates: doit
subdirs=`find . -type d -print`; \
for file in $$subdirs; do \
case $$file in */Old | */RCS) ;; \
*) wins="$$wins $$file" ;; \
esac; \
done; \
$(EMACS) -batch -l cus-dep.el -f custom-make-dependencies $$wins \
$(EMACS) -batch -l finder -f finder-compile-keywords-make-dist $$wins \
$(EMACS) -batch -f batch-update-autoloads $$wins
1997-04-11 13:14:52 +00:00
1997-04-11 11:56:09 +00:00
TAGS: $(lisptagsfiles)
../lib-src/etags $(lisptagsfiles)