aboutsummaryrefslogtreecommitdiffstats
path: root/lwlib
diff options
context:
space:
mode:
Diffstat (limited to 'lwlib')
-rw-r--r--lwlib/ChangeLog6
-rw-r--r--lwlib/Makefile.in5
2 files changed, 9 insertions, 2 deletions
diff --git a/lwlib/ChangeLog b/lwlib/ChangeLog
index a9e424ac4b3..5a1018f85e5 100644
--- a/lwlib/ChangeLog
+++ b/lwlib/ChangeLog
@@ -1,3 +1,9 @@
12013-09-04 Paul Eggert <eggert@cs.ucla.edu>
2
3 Makefile improvements.
4 * Makefile.in (all): Put this first. Don't use double-colon
5 rules, as they are not portable according to POSIX. Mark as phony.
6
12013-06-30 Paul Eggert <eggert@cs.ucla.edu> 72013-06-30 Paul Eggert <eggert@cs.ucla.edu>
2 8
3 Fix minor problems found by static checking. 9 Fix minor problems found by static checking.
diff --git a/lwlib/Makefile.in b/lwlib/Makefile.in
index f228221c45d..40f4a405e97 100644
--- a/lwlib/Makefile.in
+++ b/lwlib/Makefile.in
@@ -59,11 +59,12 @@ ALL_CFLAGS= $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \
59 -Demacs -I../src \ 59 -Demacs -I../src \
60 -I$(srcdir) -I$(srcdir)/../src -I../lib -I$(srcdir)/../lib 60 -I$(srcdir) -I$(srcdir)/../src -I../lib -I$(srcdir)/../lib
61 61
62all: liblw.a
63.PHONY: all
64
62.c.o: 65.c.o:
63 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $< 66 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
64 67
65all:: liblw.a
66
67liblw.a: $(OBJS) 68liblw.a: $(OBJS)
68 rm -f $@ 69 rm -f $@
69 $(AR) $(ARFLAGS) $@ $(OBJS) 70 $(AR) $(ARFLAGS) $@ $(OBJS)