From: Phillip Lord Date: Thu, 15 Sep 2016 08:41:45 +0000 (+0100) Subject: Fix include in makefile X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=679fde7fb50105bbc965d88ff0f57bb676a3e562;p=emacs.git Fix include in makefile --- diff --git a/packages/Makefile.in b/packages/Makefile.in index e944de8675e..528bb8d3a06 100644 --- a/packages/Makefile.in +++ b/packages/Makefile.in @@ -16,7 +16,7 @@ check-maybe: check-packages WRITE_LOG = > $@ 2>&1 || { stat=ERROR; cat $@; }; echo $$stat: $@ -gnumakefile-inc.mk: ./admin/package-makefile.el +makefile-inc.mk: ./admin/package-makefile.el $(EMACS) --batch --load admin/package-makefile.el \ --funcall package-makefile diff --git a/packages/gnumakefile.mk b/packages/gnumakefile.mk deleted file mode 100644 index eba54fcdf83..00000000000 --- a/packages/gnumakefile.mk +++ /dev/null @@ -1,16 +0,0 @@ -core/example/example.log: core/example/example-pkg.el - @$(EMACS) --batch --load admin/assess-discover.el \ - --eval '(assess-discover-run-and-exit-batch-dir "core/example")' \ - $(WRITE_LOG) - - -core/example: - test ! -f core/example/example.log || mv ./core/example/example.log ./core/example/example.log~ - $(MAKE) core/example/example.log WRITE_LOG= - -example: core/example - -.PHONY: core/example example - - -check-packages: core/example/example.log