aboutsummaryrefslogtreecommitdiffstats
path: root/oldXMenu
diff options
context:
space:
mode:
Diffstat (limited to 'oldXMenu')
-rw-r--r--oldXMenu/ChangeLog6
-rw-r--r--oldXMenu/Makefile.in6
2 files changed, 10 insertions, 2 deletions
diff --git a/oldXMenu/ChangeLog b/oldXMenu/ChangeLog
index 8f2951700e8..21acbe83053 100644
--- a/oldXMenu/ChangeLog
+++ b/oldXMenu/ChangeLog
@@ -1,3 +1,9 @@
12013-09-04 Paul Eggert <eggert@cs.ucla.edu>
2
3 Makefile improvements.
4 * Makefile.in (all, tags): Don't use double-colon rules, as they
5 are not portable according to POSIX. Mark as phony.
6
12012-12-04 Paul Eggert <eggert@cs.ucla.edu> 72012-12-04 Paul Eggert <eggert@cs.ucla.edu>
2 8
3 Include <config.h> uniformly in oldXMenu sources. 9 Include <config.h> uniformly in oldXMenu sources.
diff --git a/oldXMenu/Makefile.in b/oldXMenu/Makefile.in
index b08e6649cbd..394bfb3ab50 100644
--- a/oldXMenu/Makefile.in
+++ b/oldXMenu/Makefile.in
@@ -85,7 +85,8 @@ OBJS = Activate.o \
85 SetSel.o \ 85 SetSel.o \
86 XDelAssoc.o XLookAssoc.o XCrAssoc.o XDestAssoc.o XMakeAssoc.o 86 XDelAssoc.o XLookAssoc.o XCrAssoc.o XDestAssoc.o XMakeAssoc.o
87 87
88all:: libXMenu11.a 88all: libXMenu11.a
89.PHONY: all
89 90
90ALL_CFLAGS=$(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) \ 91ALL_CFLAGS=$(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) \
91 $(C_SWITCH_X_SITE) \ 92 $(C_SWITCH_X_SITE) \
@@ -139,5 +140,6 @@ distclean: clean
139 rm -f Makefile 140 rm -f Makefile
140maintainer-clean: distclean 141maintainer-clean: distclean
141 142
142tags:: 143tags:
143 $(TAGS) -t *.[ch] 144 $(TAGS) -t *.[ch]
145.PHONY: tags