* Makefile.in: Depend on stamp to ensure rebuilding. Remove stamp file when
we've just built the DLL.
This commit is contained in:
parent
38102913c8
commit
bb6c3d5832
|
@ -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>
|
Mon Oct 1 00:34:00 2001 Robert Collins <rbtcollins@hotmail.com>
|
||||||
|
|
||||||
* thread.cc (pthread_cond_dowait): Hopefully eliminate a race on multiple thread
|
* thread.cc (pthread_cond_dowait): Hopefully eliminate a race on multiple thread
|
||||||
|
|
|
@ -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 \
|
-e $(DLL_ENTRY) $(DEF_FILE) $(DLL_OFILES) version.o winver.o \
|
||||||
$(DLL_IMPORTS) $(MALLOC_OBJ) $(LIBM) $(LIBC) \
|
$(DLL_IMPORTS) $(MALLOC_OBJ) $(LIBM) $(LIBC) \
|
||||||
-lstdc++ -lgcc -lshell32 -luuid
|
-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)
|
$(AR) rcv $(LIB_NAME) $(LIBCOS)
|
||||||
|
|
||||||
|
stamp-cygwin-lib:
|
||||||
|
@touch stamp-cygwin-lib
|
||||||
|
|
||||||
dll_ofiles: $(DLL_OFILES)
|
dll_ofiles: $(DLL_OFILES)
|
||||||
|
|
||||||
$(LIBGMON_A): $(GMON_OFILES) $(GMON_START)
|
$(LIBGMON_A): $(GMON_OFILES) $(GMON_START)
|
||||||
|
|
Loading…
Reference in New Issue