branch: externals/ebdb commit 056b28a4e8c30424401bd838ea396d41f172526f Author: Eric Abrahamsen <e...@ericabrahamsen.net> Commit: Eric Abrahamsen <e...@ericabrahamsen.net>
Remove Makefile from repo There was no reason to make this part of the public repo to begin with. * .gitignore: And ignore. --- .gitignore | 2 +- Makefile | 15 --------------- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/.gitignore b/.gitignore index f8500e6..e650f42 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ ebdb-autoloads.el ebdb-pkg.el ChangeLog - +Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 9b059ab..0000000 --- a/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -# I have no idea how Makefiles work, and cribbed from the internet -# just enough so I had something I could use for automating testing. - -EMACS=emacs - -.PHONY: all test clean - -all: - ${EMACS} -Q --batch -L . -f batch-byte-compile *.el - -test: - ${EMACS} -Q --batch -L . -l ert -l ebdb-test.el -f ert-run-tests-batch-and-exit - -clean: - rm *.elc