* Makefile.in: Make import library creation 'make -j2' friendly.
This commit is contained in:
parent
cb06d7468a
commit
992b0a24d0
@ -1,3 +1,7 @@
|
|||||||
|
Thu Nov 16 15:24:45 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
|
* Makefile.in: Make import library creation 'make -j2' friendly.
|
||||||
|
|
||||||
Thu Nov 16 10:28:00 2000 Corinna Vinschen <corinna@vinschen.de>
|
Thu Nov 16 10:28:00 2000 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* uinfo.cc (uinfo_init): Call `cygwin_set_impersonation_token' to
|
* uinfo.cc (uinfo_init): Call `cygwin_set_impersonation_token' to
|
||||||
|
@ -175,16 +175,18 @@ maintainer-clean realclean: clean
|
|||||||
# Rule to build libcygwin.a
|
# Rule to build libcygwin.a
|
||||||
|
|
||||||
$(LIB_NAME): $(DEF_FILE) $(LIBCOS)
|
$(LIB_NAME): $(DEF_FILE) $(LIBCOS)
|
||||||
$(DLLTOOL) --as=$(AS) --dllname $(DLL_NAME) --def $(DEF_FILE) --output-lib temp.a
|
$(DLLTOOL) --as=$(AS) --dllname $(DLL_NAME) --def $(DEF_FILE) --output-lib templib.a
|
||||||
$(AR) rcv temp.a $(LIBCOS)
|
$(AR) rcv templib.a $(LIBCOS)
|
||||||
mv temp.a $(LIB_NAME)
|
mv templib.a $(LIB_NAME)
|
||||||
|
|
||||||
# Rule to make stub library used by testsuite
|
# Rule to make stub library used by testsuite
|
||||||
|
|
||||||
new-$(LIB_NAME): $(DEF_FILE) $(LIBCOS)
|
# dependency set to $(LIB_NAME) to accomodate make -j2.
|
||||||
$(DLLTOOL) --as=$(AS) --dllname new-$(DLL_NAME) --def $(DEF_FILE) --output-lib temp.a
|
# Otherwise dlltool gets confused. cgf (11-16-2000)
|
||||||
$(AR) rcv temp.a $(LIBCOS)
|
new-$(LIB_NAME): $(LIB_NAME)
|
||||||
mv temp.a new-$(LIB_NAME)
|
$(DLLTOOL) --as=$(AS) --dllname new-$(DLL_NAME) --def $(DEF_FILE) --output-lib new-templib.a
|
||||||
|
$(AR) rcv new-temp.a $(LIBCOS)
|
||||||
|
mv new-templib.a new-$(LIB_NAME)
|
||||||
|
|
||||||
# Rule to build cygwin.dll
|
# Rule to build cygwin.dll
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user