diff options
author | Glenn Morris <rgm@gnu.org> | 2014-06-13 19:05:00 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-06-13 19:05:00 -0400 |
commit | f9d80c51100e230f37df6bd3864e607f6b145cc7 (patch) | |
tree | b0f6c6785c47ece7d74f52d44b03842a51fd00c1 /lwlib | |
parent | d736dd563056e3cac9f006d186ca018525f8b36a (diff) |
With GNU make, MFLAGS is not needed
* Makefile.in (CC, CFLAGS, LDFLAGS, CPPFLAGS, abs_top_srcdir):
Remove, no longer used.
(lib, lib-src, lisp, nt, src, blessmail, install-arch-dep)
(install-nt, install-strip, uninstall, uninstall-nt)
(mostlyclean, clean, distclean, bootstrap-clean)
(maintainer-clean, extraclean, TAGS, tags, check, $(DOCS)):
($(INSTALL_DOC), $(UNINSTALL_DOC), info, bootstrap, check-declare):
GNU make automatically passes command-line arguments to sub-makes.
* admin/unidata/Makefile.in (${DSTDIR}/charprop.el):
GNU make automatically passes command-line arguments to sub-makes.
* lib-src/Makefile.in (../lib/libgnu.a):
GNU make automatically passes command-line arguments to sub-makes.
* lisp/Makefile.in ($(lisp)/cus-load.el, $(lisp)/finder-inf.el)
(autoloads, $(lisp)/subdirs.el, compile-main, leim, semantic, compile)
(compile-always): GNU make automatically passes
command-line arguments to sub-makes.
* lwlib/Makefile.in ($(globals_h)):
GNU make automatically passes command-line arguments to sub-makes.
* src/Makefile.in ($(leimdir)/leim-list.el, $(srcdir)/macuvs.h)
($(lispsource)/international/charprop.el)
($(libsrc)/make-docfile$(EXEEXT), $(lwlibdir)/liblw.a)
($(oldXMenudir)/libXMenu11.a, ns-app, .el.elc)
($(lispsource)/loaddefs.el, bootstrap-emacs$(EXEEXT)):
GNU make automatically passes command-line arguments to sub-makes.
* test/automated/Makefile.in (compile-main):
GNU make automatically passes command-line arguments to sub-makes.
Diffstat (limited to 'lwlib')
-rw-r--r-- | lwlib/ChangeLog | 5 | ||||
-rw-r--r-- | lwlib/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lwlib/ChangeLog b/lwlib/ChangeLog index 5a5d1e703f..c62b72ab9a 100644 --- a/lwlib/ChangeLog +++ b/lwlib/ChangeLog @@ -1,3 +1,8 @@ +2014-06-13 Glenn Morris <rgm@gnu.org> + + * Makefile.in ($(globals_h)): + GNU make automatically passes command-line arguments to sub-makes. + 2014-06-04 Dmitry Antipov <dmantipov@yandex.ru> * lwlib-widget.h (widget_value) [USE_X_TOOLKIT]: Use X toolkit diff --git a/lwlib/Makefile.in b/lwlib/Makefile.in index 8bdd2bbbf3..145f6ec56c 100644 --- a/lwlib/Makefile.in +++ b/lwlib/Makefile.in @@ -80,7 +80,7 @@ globals_h = ../src/globals.h src_h = $(config_h) $(lisp_h) $(globals_h) $(globals_h): - cd ../src && $(MAKE) $(MFLAGS) globals.h + cd ../src && $(MAKE) globals.h lwlib-utils.o: $(src_h) lwlib-utils.c lwlib-utils.h lwlib.h lwlib.o: $(src_h) lwlib.c lwlib.h lwlib-int.h lwlib-utils.h \ |