This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMU Common Lisp".
The branch, master has been updated
via 4d6ff8ea460d988ae18e96b22d847732fafa2280 (commit)
from 1769b2a4c7685a93dbd05dd170f4d9720a36e3aa (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 4d6ff8ea460d988ae18e96b22d847732fafa2280
Author: Raymond Toy <toy.raymond(a)gmail.com>
Date: Sat Nov 8 13:30:06 2014 -0800
Auto-generate dependencies.
* GNUmakefile:
* Auto-generate dependencies using same approach as for lisp.
* Config.Darwin:
* Config.NetBSD:
* Config.solaris_sunc:
* Config.x86:
* Add appropriate value for DEPEND_FLAGS
diff --git a/src/motif/server/Config.Darwin b/src/motif/server/Config.Darwin
index dcc463c..68e175c 100644
--- a/src/motif/server/Config.Darwin
+++ b/src/motif/server/Config.Darwin
@@ -6,3 +6,5 @@ LIBS = -lXft -lXm -lXt -lXext -lX11 -lSM -lICE
# tree to the CVS souce layout. Sites may need to customize
# this path.
VPATH = ../../../src/motif/server/
+
+DEPEND_FLAGS = -MM
diff --git a/src/motif/server/Config.NetBSD b/src/motif/server/Config.NetBSD
index a5d3233..d192b68 100644
--- a/src/motif/server/Config.NetBSD
+++ b/src/motif/server/Config.NetBSD
@@ -5,3 +5,5 @@ LIBS = -lXm -lXt -lXext -lX11 -lSM -lICE
# tree to the CVS souce layout. Sites may need to customize
# this path.
VPATH = ../../../src/motif/server/
+
+DEPEND_FLAGS = -MM
diff --git a/src/motif/server/Config.solaris_sunc b/src/motif/server/Config.solaris_sunc
index 5ba86d7..9488683 100644
--- a/src/motif/server/Config.solaris_sunc
+++ b/src/motif/server/Config.solaris_sunc
@@ -10,3 +10,5 @@ LIBS = -lXm -lXt -lX11 -lsocket -lnsl -lgen
# tree to the CVS souce layout. Sites may need to customize
# this path.
VPATH = ../../../src/motif/server/
+
+DEPEND_FLAGS = -xM
diff --git a/src/motif/server/Config.x86 b/src/motif/server/Config.x86
index 10200a7..9b6e371 100644
--- a/src/motif/server/Config.x86
+++ b/src/motif/server/Config.x86
@@ -5,3 +5,5 @@ LIBS = -lXm -lXt -lX11
# tree to the CVS souce layout. Sites may need to customize
# this path.
VPATH = ../../../src/motif/server/
+
+DEPEND_FLAGS = -MM
diff --git a/src/motif/server/GNUmakefile b/src/motif/server/GNUmakefile
index 7acc58b..1ffc86f 100644
--- a/src/motif/server/GNUmakefile
+++ b/src/motif/server/GNUmakefile
@@ -20,3 +20,11 @@ requests.o : requests.c Interface.h
clean:
-rm -f core $(OBJS) $(TARGET)
+
+depend: Depends
+
+Depends: $(patsubst %.o,%.c,$(OBJS))
+ $(CC) $(DEPEND_FLAGS) $(CFLAGS) $(CPPFLAGS) $^ > ,depends
+ mv ,depends Depends
+
+-include Depends
-----------------------------------------------------------------------
Summary of changes:
src/motif/server/Config.Darwin | 2 ++
src/motif/server/Config.NetBSD | 2 ++
src/motif/server/Config.solaris_sunc | 2 ++
src/motif/server/Config.x86 | 2 ++
src/motif/server/GNUmakefile | 8 ++++++++
5 files changed, 16 insertions(+)
hooks/post-receive
--
CMU Common Lisp