* Makefile.in: Change to build the DLL during a cross-compiler build.
This commit is contained in:
parent
fa2ba85814
commit
cfeb2c7d79
|
@ -1,3 +1,7 @@
|
||||||
|
Tue Jun 20 13:38:12 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
|
* Makefile.in: Change to build the DLL during a cross-compiler build.
|
||||||
|
|
||||||
Mon Jun 19 20:46:33 2000 Christopher Faylor <cgf@cygnus.com>
|
Mon Jun 19 20:46:33 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
* select.cc (socket_cleanup): Shutdown I/O on dummy sockets prior to
|
* select.cc (socket_cleanup): Shutdown I/O on dummy sockets prior to
|
||||||
|
|
|
@ -141,19 +141,18 @@ LD_STUFF=--dll $(DLL_OFILES) version.o winver.o $(DLL_IMPORTS) $(LIBM) $(LIBC) \
|
||||||
all_host=@all_host@
|
all_host=@all_host@
|
||||||
install_host=@install_host@
|
install_host=@install_host@
|
||||||
|
|
||||||
all: $(all_host) all_target
|
all: new-$(DLL_NAME) $(all_host) all_target
|
||||||
|
|
||||||
install: $(install_host) install_target
|
install: $(install_host) install_target
|
||||||
|
|
||||||
# all: new-$(DLL_NAME) $(LIBGMON_A) $(LIB_NAME) new-$(LIB_NAME) cygrun.exe force
|
|
||||||
|
|
||||||
all_target: $(LIBGMON_A) $(LIB_NAME)
|
all_target: $(LIBGMON_A) $(LIB_NAME)
|
||||||
|
|
||||||
all_host: new-$(DLL_NAME) cygrun.exe
|
all_host: cygrun.exe
|
||||||
|
|
||||||
force:
|
force:
|
||||||
|
|
||||||
install: all $(install_host) $(install_target)
|
install: all $(install_host) $(install_target)
|
||||||
|
$(INSTALL_DATA) new-$(DLL_NAME) $(bindir)/$(DLL_NAME); \
|
||||||
for i in $(LIB_NAME) $(GMON_START) $(LIBGMON_A) ; do \
|
for i in $(LIB_NAME) $(GMON_START) $(LIBGMON_A) ; do \
|
||||||
$(INSTALL_DATA) $$i $(tooldir)/lib/$$i ; \
|
$(INSTALL_DATA) $$i $(tooldir)/lib/$$i ; \
|
||||||
done ; \
|
done ; \
|
||||||
|
@ -166,7 +165,6 @@ install: all $(install_host) $(install_target)
|
||||||
$(INSTALL_DATA) regexp/regexp.h $(tooldir)/include/regexp.h
|
$(INSTALL_DATA) regexp/regexp.h $(tooldir)/include/regexp.h
|
||||||
|
|
||||||
install_host:
|
install_host:
|
||||||
$(INSTALL_DATA) new-$(DLL_NAME) $(bindir)/$(DLL_NAME)
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-rm -f *.o *.dll *.a *.exp junk *.base version.cc regexp/*.o winver_stamp
|
-rm -f *.o *.dll *.a *.exp junk *.base version.cc regexp/*.o winver_stamp
|
||||||
|
|
Loading…
Reference in New Issue