diff options
| author | Jan D | 2015-05-17 16:46:34 +0200 |
|---|---|---|
| committer | Jan D | 2015-05-17 16:46:34 +0200 |
| commit | 6445ee0fb751ae2c1dfef900d44721b3d952812f (patch) | |
| tree | d43006cb93d9ea7b00ea02aabcd5577c41ff827f /lwlib | |
| parent | f92ac2e82ed199d6f25d2a59508e08addb1150ac (diff) | |
| parent | c9c4708ed47b18987940a71b98eb9873150d2b95 (diff) | |
| download | emacs-6445ee0fb751ae2c1dfef900d44721b3d952812f.tar.gz emacs-6445ee0fb751ae2c1dfef900d44721b3d952812f.zip | |
Merge branch 'master' into cairo
Diffstat (limited to 'lwlib')
| -rw-r--r-- | lwlib/Makefile.in | 20 | ||||
| -rw-r--r-- | lwlib/autodeps.mk | 5 | ||||
| -rw-r--r-- | lwlib/deps.mk | 2 |
3 files changed, 15 insertions, 12 deletions
diff --git a/lwlib/Makefile.in b/lwlib/Makefile.in index 7c91fb3a21c..cbc747cbbac 100644 --- a/lwlib/Makefile.in +++ b/lwlib/Makefile.in | |||
| @@ -71,10 +71,15 @@ am__v_at_0 = @ | |||
| 71 | am__v_at_1 = | 71 | am__v_at_1 = |
| 72 | 72 | ||
| 73 | DEPDIR = deps | 73 | DEPDIR = deps |
| 74 | ## -MMD -MF $(DEPDIR)/$*.d if AUTO_DEPEND; else empty. | 74 | AUTO_DEPEND = @AUTO_DEPEND@ |
| 75 | DEPFLAGS = @DEPFLAGS@ | 75 | |
| 76 | ## ${MKDIR_P} ${DEPDIR} (if AUTO_DEPEND); else ':'. | 76 | ifeq ($(AUTO_DEPEND),yes) |
| 77 | MKDEPDIR = @MKDEPDIR@ | 77 | DEPFLAGS = -MMD -MF ${DEPDIR}/$*.d -MP |
| 78 | MKDEPDIR = ${MKDIR_P} ${DEPDIR} | ||
| 79 | else | ||
| 80 | DEPFLAGS = | ||
| 81 | MKDEPDIR = : | ||
| 82 | endif | ||
| 78 | 83 | ||
| 79 | ## ../src is where the generated file (config.h, globals.h) are. | 84 | ## ../src is where the generated file (config.h, globals.h) are. |
| 80 | ## $(srcdir)/../src is where the non-generated files (lisp.h) are. | 85 | ## $(srcdir)/../src is where the non-generated files (lisp.h) are. |
| @@ -104,8 +109,11 @@ globals_h = ../src/globals.h | |||
| 104 | $(globals_h): | 109 | $(globals_h): |
| 105 | $(MAKE) -C ../src globals.h | 110 | $(MAKE) -C ../src globals.h |
| 106 | 111 | ||
| 107 | ## Insert either autodeps.mk (if AUTO_DEPEND), else deps.mk. | 112 | ifeq ($(AUTO_DEPEND),yes) |
| 108 | @lwlib_deps_frag@ | 113 | -include $(ALLOBJS:%.o=${DEPDIR}/%.d) |
| 114 | else | ||
| 115 | include $(srcdir)/deps.mk | ||
| 116 | endif | ||
| 109 | 117 | ||
| 110 | .PHONY: mostlyclean clean distclean bootstrap-clean maintainer-clean | 118 | .PHONY: mostlyclean clean distclean bootstrap-clean maintainer-clean |
| 111 | 119 | ||
diff --git a/lwlib/autodeps.mk b/lwlib/autodeps.mk deleted file mode 100644 index f7109295ce2..00000000000 --- a/lwlib/autodeps.mk +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | ### autodeps.mk --- lwlib/Makefile fragment for GNU Emacs | ||
| 2 | |||
| 3 | ## This is inserted in lwlib/Makefile if AUTO_DEPEND=yes. | ||
| 4 | |||
| 5 | -include $(ALLOBJS:%.o=${DEPDIR}/%.d) | ||
diff --git a/lwlib/deps.mk b/lwlib/deps.mk index 11cc0567428..a19e51f34d1 100644 --- a/lwlib/deps.mk +++ b/lwlib/deps.mk | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | ### Commentary: | 21 | ### Commentary: |
| 22 | 22 | ||
| 23 | ## This file is inserted in lwlib/Makefile if AUTO_DEPEND=no. | 23 | ## This file is included in lwlib/Makefile if AUTO_DEPEND=no. |
| 24 | ## It defines static dependencies between the various source files. | 24 | ## It defines static dependencies between the various source files. |
| 25 | 25 | ||
| 26 | ### Code: | 26 | ### Code: |