]> code.delx.au - gnu-emacs-elpa/blobdiff - packages/load-relative/Makefile.am
Oops - should have added in branch externals/<pkg>
[gnu-emacs-elpa] / packages / load-relative / Makefile.am
diff --git a/packages/load-relative/Makefile.am b/packages/load-relative/Makefile.am
deleted file mode 100644 (file)
index 981101b..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-lisp_files := $(wildcard *.el)
-lisp_LISP = $(lisp_files)
-
-PHONY=check check-short clean dist distclean test
-
-EXTRA_DIST = $(lisp_files) $(test_files) README.md THANKS COPYING
-GIT2CL ?= git2cl
-
-#: Run all tests
-check: $(test-files)
-       $(MAKE) -C test check
-
-#: Run all tests with minimum verbosity
-check-short:
-       $(MAKE) -C test check 2>&1  | ruby make-check-filter.rb
-
-
-#: same as check
-test: check
-
-#: same as check-short
-test-short: check-short
-
-#: Read this first.
-README: README.md
-       ln -s README.md README
-
-if MAINTAINER_MODE
-
-CL = ChangeLog
-#: Create a log file from the individual commits via git2cl
-ChangeLog:
-       git log --pretty --numstat --summary | $(GIT2CL) > $@
-
-ACLOCAL_AMFLAGS=-I .
-
-endif