summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-09-30 21:10:38 +0000
committerChristopher Faylor <me@cgf.cx>2001-09-30 21:10:38 +0000
commitbb6c3d5832a1ec56ebd9edcc5fc90e150e09f745 (patch)
tree5b156c7a0c44630d3a3b18852cb42ce91ca568b5
parent38102913c804196b69ffd4d60e5631f082c5a66e (diff)
downloadcygnal-bb6c3d5832a1ec56ebd9edcc5fc90e150e09f745.tar.gz
cygnal-bb6c3d5832a1ec56ebd9edcc5fc90e150e09f745.tar.bz2
cygnal-bb6c3d5832a1ec56ebd9edcc5fc90e150e09f745.zip
* Makefile.in: Depend on stamp to ensure rebuilding. Remove stamp file when
we've just built the DLL.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/Makefile.in6
2 files changed, 10 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index da24a0be8..8d0483da9 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+Sun Sep 30 17:10:18 2001 Christopher Faylor <cgf@cygnus.com>
+
+ * Makefile.in: Depend on stamp to ensure rebuilding. Remove stamp file
+ when we've just built the DLL.
+
Mon Oct 1 00:34:00 2001 Robert Collins <rbtcollins@hotmail.com>
* thread.cc (pthread_cond_dowait): Hopefully eliminate a race on multiple thread
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in
index 7629241cb..10ac0e9b1 100644
--- a/winsup/cygwin/Makefile.in
+++ b/winsup/cygwin/Makefile.in
@@ -195,10 +195,14 @@ new-$(DLL_NAME): $(LDSCRIPT) $(DLL_OFILES) $(DEF_FILE) $(DLL_IMPORTS) $(LIBC) $(
-e $(DLL_ENTRY) $(DEF_FILE) $(DLL_OFILES) version.o winver.o \
$(DLL_IMPORTS) $(MALLOC_OBJ) $(LIBM) $(LIBC) \
-lstdc++ -lgcc -lshell32 -luuid
+ @rm -f stamp-cygwin-lib
-$(LIB_NAME): new-$(DLL_NAME) $(LIBCOS)
+$(LIB_NAME): new-$(DLL_NAME) $(LIBCOS) stamp-cygwin-lib
$(AR) rcv $(LIB_NAME) $(LIBCOS)
+stamp-cygwin-lib:
+ @touch stamp-cygwin-lib
+
dll_ofiles: $(DLL_OFILES)
$(LIBGMON_A): $(GMON_OFILES) $(GMON_START)