diff options
| author | rocky <rb@dustyfeet.com> | 2017-03-16 02:45:51 -0400 |
|---|---|---|
| committer | rocky <rb@dustyfeet.com> | 2017-03-16 02:45:51 -0400 |
| commit | bc90a4f0ff225221213630eb70a0bcc3ee012b33 (patch) | |
| tree | df45aa1a324caf7e21f689a7f42087f82ca2d198 | |
| parent | d6e9b70313a7e8f4daf1364cf75da3623d675179 (diff) | |
Correct "make install"
Don't install test files
Do install lldb subdirectory
| -rw-r--r-- | lldb/Makefile.am | 4 | ||||
| -rw-r--r-- | test/Makefile.am | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lldb/Makefile.am b/lldb/Makefile.am index f5cce1b..e8453c0 100644 --- a/lldb/Makefile.am +++ b/lldb/Makefile.am @@ -1,3 +1,5 @@ -include ../common.mk lisp_files = $(wildcard *.el) EXTRA_DIST=$(lisp_files) +lisp_LISP = $(lisp_files) +include ../common.mk +lispdir = @lispdir@/lldb diff --git a/test/Makefile.am b/test/Makefile.am index 8b78d7c..c37f0cf 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -65,6 +65,8 @@ test-%.run: test-%.elrun: (cd $(top_srcdir)/test && EMACSLOADPATH=$(EMACSLOADPAth) $(EMACS) --batch --no-site-file --no-splash --load ../el-get-install.el --load $(@:.elrun=.el)) +install-lispLISP: $(lisp_LISP) $(ELCFILES) + # Whatever it is you want to do, it should be forwarded to the # to top-level directories # %: |
