aboutsummaryrefslogtreecommitdiffstats
path: root/oldXMenu
diff options
context:
space:
mode:
authorEli Zaretskii2015-05-16 12:33:12 +0300
committerEli Zaretskii2015-05-16 12:33:12 +0300
commitda4a31b1b1af919f0473dffa86b46beec5ca5541 (patch)
tree90abc1a14c215cd6efa3a492400a39dbd356602a /oldXMenu
parent91a274810ff17403f37bde512716b180c9ab75ef (diff)
parenta96731d7f0f0616e500583a1d3eaa912a7f0ec16 (diff)
downloademacs-da4a31b1b1af919f0473dffa86b46beec5ca5541.tar.gz
emacs-da4a31b1b1af919f0473dffa86b46beec5ca5541.zip
Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs
Diffstat (limited to 'oldXMenu')
-rw-r--r--oldXMenu/Makefile.in20
-rw-r--r--oldXMenu/autodeps.mk5
-rw-r--r--oldXMenu/deps.mk2
3 files changed, 15 insertions, 12 deletions
diff --git a/oldXMenu/Makefile.in b/oldXMenu/Makefile.in
index ef2a3600a6b..de5b8e1114c 100644
--- a/oldXMenu/Makefile.in
+++ b/oldXMenu/Makefile.in
@@ -112,10 +112,15 @@ am__v_at_0 = @
112am__v_at_1 = 112am__v_at_1 =
113 113
114DEPDIR = deps 114DEPDIR = deps
115## -MMD -MF $(DEPDIR)/$*.d if AUTO_DEPEND; else empty. 115AUTO_DEPEND = @AUTO_DEPEND@
116DEPFLAGS = @DEPFLAGS@ 116
117## ${MKDIR_P} ${DEPDIR} (if AUTO_DEPEND); else ':'. 117ifeq ($(AUTO_DEPEND),yes)
118MKDEPDIR = @MKDEPDIR@ 118DEPFLAGS = -MMD -MF ${DEPDIR}/$*.d -MP
119MKDEPDIR = ${MKDIR_P} ${DEPDIR}
120else
121DEPFLAGS =
122MKDEPDIR = :
123endif
119 124
120ALL_CFLAGS=$(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) \ 125ALL_CFLAGS=$(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) \
121 $(C_SWITCH_X_SITE) $(DEPFLAGS) \ 126 $(C_SWITCH_X_SITE) $(DEPFLAGS) \
@@ -132,8 +137,11 @@ libXMenu11.a: $(OBJS) $(EXTRA)
132 $(AM_V_at)$(AR) $(ARFLAGS) $@ $(OBJS) $(EXTRA) 137 $(AM_V_at)$(AR) $(ARFLAGS) $@ $(OBJS) $(EXTRA)
133 $(AM_V_at)$(RANLIB) $@ 138 $(AM_V_at)$(RANLIB) $@
134 139
135## Insert either autodeps.mk (if AUTO_DEPEND), else deps.mk. 140ifeq ($(AUTO_DEPEND),yes)
136@oldxmenu_deps_frag@ 141-include $(ALLOBJS:%.o=${DEPDIR}/%.d)
142else
143include $(srcdir)/deps.mk
144endif
137 145
138.PHONY: mostlyclean clean distclean bootstrap-clean maintainer-clean 146.PHONY: mostlyclean clean distclean bootstrap-clean maintainer-clean
139 147
diff --git a/oldXMenu/autodeps.mk b/oldXMenu/autodeps.mk
deleted file mode 100644
index f7109295ce2..00000000000
--- a/oldXMenu/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/oldXMenu/deps.mk b/oldXMenu/deps.mk
index cdb89f9ead9..54ce3587574 100644
--- a/oldXMenu/deps.mk
+++ b/oldXMenu/deps.mk
@@ -32,7 +32,7 @@
32 32
33### Commentary: 33### Commentary:
34 34
35## This file is inserted in oldXMenu/Makefile if AUTO_DEPEND=no. 35## This file is included in oldXMenu/Makefile if AUTO_DEPEND=no.
36## It defines static dependencies between the various source files. 36## It defines static dependencies between the various source files.
37 37
38### Code: 38### Code: