emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103221: lwlib/Makefile.in misc clean


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103221: lwlib/Makefile.in misc cleanup.
Date: Thu, 10 Feb 2011 19:41:17 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103221
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2011-02-10 19:41:17 -0800
message:
  lwlib/Makefile.in misc cleanup.
  
  * lwlib/Makefile.in (USE_X_TOOLKIT, RM, TOOLKIT_DEFINES): Remove.
  (ALL_CFLAGS): Remove -I.
  (config_h, lisp_h, src_h): New variables.
  (globals_h): Rename from $globals.
  ($(globals_h)): Check cd exit status.
  (lwlib.o): Remove special rule.
  (lwlib-utils.o, lwlib.o, lwlib-Xlw.o, lwlib-Xaw.o, lwlib-Xm.o, xlwmenu.o):
  Add lisp.h and config.h to prereqs.
  (lwlib-utils.o): Add lwlib.h to prereqs.
  (lwlib.o): Add lwlib-utils.h and lwlib-Xm.h to prereqs.
  (lwlib-Xlw.o): Add xlwmenu.h to prereqs.
  (xlwmenu.o): Add ../src/xterm.h to prereqs.
  (mostlyclean): Forget about "core" files.
modified:
  lwlib/ChangeLog
  lwlib/Makefile.in
=== modified file 'lwlib/ChangeLog'
--- a/lwlib/ChangeLog   2011-02-10 05:03:29 +0000
+++ b/lwlib/ChangeLog   2011-02-11 03:41:17 +0000
@@ -1,3 +1,19 @@
+2011-02-11  Glenn Morris  <address@hidden>
+
+       * Makefile.in (USE_X_TOOLKIT, RM, TOOLKIT_DEFINES): Remove.
+       (ALL_CFLAGS): Remove -I.
+       (config_h, lisp_h, src_h): New variables.
+       (globals_h): Rename from $globals.
+       ($(globals_h)): Check cd exit status.
+       (lwlib.o): Remove special rule.
+       (lwlib-utils.o, lwlib.o, lwlib-Xlw.o, lwlib-Xaw.o, lwlib-Xm.o)
+       (xlwmenu.o): Add lisp.h and config.h to prereqs.
+       (lwlib-utils.o): Add lwlib.h to prereqs.
+       (lwlib.o): Add lwlib-utils.h and lwlib-Xm.h to prereqs.
+       (lwlib-Xlw.o): Add xlwmenu.h to prereqs.
+       (xlwmenu.o): Add ../src/xterm.h to prereqs.
+       (mostlyclean): Forget about "core" files.
+
 2011-02-10  Glenn Morris  <address@hidden>
 
        * lwlib-Xaw.c, lwlib-Xlw.c, lwlib-Xm.c, lwlib-utils.c, lwlib.c:

=== modified file 'lwlib/Makefile.in'
--- a/lwlib/Makefile.in 2011-02-11 03:30:09 +0000
+++ b/lwlib/Makefile.in 2011-02-11 03:41:17 +0000
@@ -36,25 +36,26 @@
 address@hidden@
 address@hidden@
 address@hidden@
-# See address@hidden@ is used below.
address@hidden@
 
 AR = ar cq
-RM = rm -f
 
 LUCID_OBJS = lwlib-Xlw.o xlwmenu.o lwlib-Xaw.o
 MOTIF_OBJS = lwlib-Xm.o
 
-TOOLKIT_DEFINES = 
+## LUCID_OBJS or MOTIF_OBJS.
 TOOLKIT_OBJS = $(@address@hidden)
 
 OBJS = lwlib.o $(TOOLKIT_OBJS) lwlib-utils.o
 
-# ../src is needed to find config.h.
+## ../src is where the generated file (config.h, globals.h) are.
+## $(srcdir)/../src is where the non-generated files (lisp.h) are.
+## (In an out-of-tree build, these two are not the same.)
+## $(srcdir) is where the lwlib sources are.
+## There are no generated lwlib files, hence no need for -I.
 ALL_CFLAGS= $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \
   $(C_SWITCH_X_SYSTEM) $(C_SWITCH_MACHINE) \
   $(C_WARNINGS_SWITCH) $(PROFILING_CFLAGS) $(CFLAGS) \
-  -DHAVE_CONFIG_H -Demacs -I. -I../src -I$(srcdir) -I$(srcdir)/../src
+  -DHAVE_CONFIG_H -Demacs -I../src -I$(srcdir) -I$(srcdir)/../src
 
 .c.o:
        $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
@@ -62,35 +63,37 @@
 all:: liblw.a
 
 liblw.a: $(OBJS)
-       $(RM) $@
+       rm -f $@
        $(AR) $@ $(OBJS)
        $(RANLIB) $@
 
+## Generated files in ../src, non-generated in $(srcdir)/../src.
+config_h = ../src/config.h
+lisp_h = $(srcdir)/../src/lisp.h
 ## lisp.h includes this.
-globals = ../src/globals.h
-
-$(globals):
-       cd ../src; $(MAKE) $(MFLAGS) globals.h
-
-# Depend on Makefile so that we recompile if TOOLKIT_DEFINES changes.
-lwlib.o:  $(srcdir)/lwlib.c  Makefile
-       $(CC) -c $(CPPFLAGS) $(TOOLKIT_DEFINES) $(ALL_CFLAGS) $(srcdir)/lwlib.c
-
-lwlib-utils.o: $(globals) lwlib-utils.c lwlib-utils.h
-lwlib.o:      $(globals) lwlib.c lwlib.h lwlib-int.h lwlib-Xaw.h lwlib-Xlw.h
-lwlib-Xlw.o:  $(globals) lwlib-Xlw.c lwlib.h lwlib-int.h lwlib-Xlw.h
-lwlib-Xaw.o:  $(globals) lwlib-Xaw.c lwlib-Xaw.h lwlib.h lwlib-int.h
-lwlib-Xm.o:   $(globals) lwlib-Xm.c lwlib-Xm.h lwlib.h lwlib-int.h 
lwlib-utils.h
-xlwmenu.o:    $(globals) xlwmenu.c xlwmenu.h lwlib.h xlwmenuP.h
+globals_h = ../src/globals.h
+src_h = $(config_h) $(lisp_h) $(globals_h)
+
+$(globals_h):
+       cd ../src && $(MAKE) $(MFLAGS) 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 \
+  lwlib-Xlw.h lwlib-Xm.h lwlib-Xaw.h
+lwlib-Xlw.o:   $(src_h) lwlib-Xlw.c lwlib.h lwlib-int.h lwlib-Xlw.h xlwmenu.h
+lwlib-Xaw.o:   $(src_h) lwlib-Xaw.c lwlib-Xaw.h lwlib.h lwlib-int.h
+lwlib-Xm.o:    $(src_h) lwlib-Xm.c lwlib-Xm.h lwlib.h lwlib-int.h lwlib-utils.h
+xlwmenu.o:     $(src_h) xlwmenu.c xlwmenu.h lwlib.h xlwmenuP.h \
+  $(srcdir)/../src/xterm.h
 
 mostlyclean:
-       $(RM) *.o core liblw.a \#*
+       rm -f *.o liblw.a \#*
 
 clean: mostlyclean
 distclean: clean
-       $(RM) Makefile
+       rm -f Makefile
 maintainer-clean: distclean
-       $(RM) TAGS
+       rm -f TAGS
 
 TAGS:
        ../lib-src/etags $(srcdir)/*.[ch]


reply via email to

[Prev in Thread] Current Thread [Next in Thread]