diff options
author | Kenichi Handa <handa@m17n.org> | 1997-07-01 07:05:03 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-07-01 07:05:03 +0000 |
commit | c192870c7a0d3034f2e264e3fcbc21d607aa24db (patch) | |
tree | cbc41c905dc20e3aaeaaafdac5d506a118e3ca25 /Makefile.in | |
parent | 163658b8b5bc84c1d27626265ba0cf82fdcadc63 (diff) | |
download | emacs-c192870c7a0d3034f2e264e3fcbc21d607aa24db.tar.gz |
(SUBDIR): Add leim.
(SUBDIR_MAKEFILES): Add leim/Makefile.
(leim/Makefile): New target.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index b58b3cd1aab..2bca691fa1f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -186,13 +186,14 @@ EMACS = emacs # Subdirectories to make recursively. `lisp' is not included # because the compiled lisp files are part of the distribution # and you cannot remake them without installing Emacs first. -SUBDIR = lib-src src +SUBDIR = lib-src src leim # The makefiles of the directories in $SUBDIR. -SUBDIR_MAKEFILES = lib-src/Makefile man/Makefile src/Makefile oldXMenu/Makefile lwlib/Makefile +SUBDIR_MAKEFILES = lib-src/Makefile man/Makefile src/Makefile oldXMenu/Makefile lwlib/Makefile leim/Makefile # Subdirectories to install, and where they'll go. # lib-src's makefile knows how to install it, so we don't do that here. +# leim's makefile also knows how to install it, so we don't do that here. # When installing the info files, we need to do special things to # avoid nuking an existing dir file, so we don't do that here; # instead, we have written out explicit code in the `install' targets. @@ -252,6 +253,9 @@ oldXMenu/Makefile: oldXMenu/Makefile.in config.status lwlib/Makefile: lwlib/Makefile.in config.status ./config.status +leim/Makefile: leim/Makefile.in config.status + ./config.status + # ==================== Installation ==================== ## If we let lib-src do its own installation, that means we |