Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-07-29 06:33:30 +0400
committerChristopher Faylor <me@cgf.cx>2001-07-29 06:33:30 +0400
commite13ea3343d64bf653de3c17e02bee9b3d877af75 (patch)
treeeacadec02a7dccc30c67914aa8d847980cf1fa97 /winsup/cygwin/Makefile.in
parent8e4e3874c4e3d24b8ade7eb212f122b7c63586f2 (diff)
* dcrt0.cc (alloc_stack_hard_way): Make half-hearted attempt to deal with
growing stack under Windows 95. * Makefile.in: Add install-lib and install-headers.
Diffstat (limited to 'winsup/cygwin/Makefile.in')
-rw-r--r--winsup/cygwin/Makefile.in11
1 files changed, 8 insertions, 3 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in
index 3a85f3448..317616bdc 100644
--- a/winsup/cygwin/Makefile.in
+++ b/winsup/cygwin/Makefile.in
@@ -132,7 +132,8 @@ DLL_OFILES:=assert.o autoload.o cygheap.o dcrt0.o debug.o delqueue.o dir.o \
GMON_OFILES:= gmon.o mcount.o profil.o
-.PHONY: all force dll_ofiles install all_target install_target all_host install_host
+.PHONY: all force dll_ofiles install all_target install_target all_host install_host \
+ install install_target install-libs install-headers
.SUFFIXES:
.SUFFIXES: .c .cc .def .a .o .d
@@ -148,11 +149,15 @@ all_host: new-$(LIB_NAME) cygrun.exe
force:
-install: all $(install_host) $(install_target)
+install: install-libs install-headers $(install_host) $(install_target)
+
+install-libs: $(LIB_NAME)
$(INSTALL_DATA) new-$(DLL_NAME) $(bindir)/$(DLL_NAME); \
for i in $(LIB_NAME) $(GMON_START) $(LIBGMON_A) automode.o binmode.o textmode.o ; do \
$(INSTALL_DATA) $$i $(tooldir)/lib/$$i ; \
- done ; \
+ done
+
+install-headers:
cd $(srcdir); \
for sub in `find include -name '[a-z]*' -type d -print | sort`; do \
for i in $$sub/*.h ; do \