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:
authorJeff Johnston <jjohnstn@redhat.com>2004-10-05 23:34:25 +0400
committerJeff Johnston <jjohnstn@redhat.com>2004-10-05 23:34:25 +0400
commit423152ed0a26e3dc2f7f26dabacf7e25049d72e4 (patch)
tree781915916c14363692581e6b41d531e2774056d3 /newlib/Makefile.in
parent67eedd247310cb2083f8b916b66fe8678dc4855c (diff)
2004-10-05 Jeff Johnston <jjohnstn@redhat.com>
* Makefile.am (stmp-targ-include): Support sys header files from machine directories. * Makefile.in: Regenerated.
Diffstat (limited to 'newlib/Makefile.in')
-rw-r--r--newlib/Makefile.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/newlib/Makefile.in b/newlib/Makefile.in
index 8b27ad3f1..9e99e0248 100644
--- a/newlib/Makefile.in
+++ b/newlib/Makefile.in
@@ -705,6 +705,11 @@ stmp-targ-include: config.status
cp $$i targ-include/machine/`basename $$i`; \
else true; fi ; \
done
+ -for i in $(srcdir)/libc/machine/$(machine_dir)/sys/*.h; do \
+ if [ -f $$i ]; then \
+ cp $$i targ-include/sys/`basename $$i`; \
+ else true; fi ; \
+ done
-for i in $(srcdir)/libc/sys/$(sys_dir)/include/*.h; do \
if [ -f $$i ]; then \
cp $$i targ-include/`basename $$i`; \
@@ -755,6 +760,11 @@ install-data-local: install-toollibLIBRARIES
for i in $(srcdir)/libc/include/sys/*.h; do \
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/sys/`basename $$i`; \
done; \
+ for i in $(srcdir)/libc/machine/$(machine_dir)/sys/*.h; do \
+ if [ -f $$i ]; then \
+ $(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/sys/`basename $$i`; \
+ else true; fi ; \
+ done ; \
for i in $(srcdir)/libc/sys/$(sys_dir)/sys/*.h; do \
if [ -f $$i ]; then \
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/sys/`basename $$i`; \