diff options
author | Christopher Faylor <me@cgf.cx> | 2000-11-04 02:51:36 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-11-04 02:51:36 +0000 |
commit | 46209564d41817b5d75671692152ccf3ae964dac (patch) | |
tree | aa096da6eeb88fdd64bd4b8b2077acb825aced1e /winsup | |
parent | c2445f2abc376fe20a426039b6c395ff8213f28b (diff) | |
download | cygnal-46209564d41817b5d75671692152ccf3ae964dac.tar.gz cygnal-46209564d41817b5d75671692152ccf3ae964dac.tar.bz2 cygnal-46209564d41817b5d75671692152ccf3ae964dac.zip |
* lib/Makefile.in: Install header files in w32api subdirectory.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/w32api/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/w32api/lib/Makefile.in | 10 |
2 files changed, 10 insertions, 4 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 79f6ec24e..0aa98ba98 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,7 @@ +Fri Nov 3 21:50:47 2000 Christopher Faylor <cgf@cygnus.com> + + * lib/Makefile.in: Install header files in w32api subdirectory. + 2000-10-31 Earnie Boyd <earnie_boyd@yahoo.com> * CONTRIBUTIONS: New file. diff --git a/winsup/w32api/lib/Makefile.in b/winsup/w32api/lib/Makefile.in index 7e7947135..8fdd3832f 100644 --- a/winsup/w32api/lib/Makefile.in +++ b/winsup/w32api/lib/Makefile.in @@ -134,9 +134,10 @@ xinstall-libraries: all done xinstall-headers: - $(mkinstalldirs) $(tooldir)/include + $(mkinstalldirs) $(tooldir)/include/w32api for i in $(HEADERS); do \ - $(INSTALL_DATA) $(srcdir)/../include/$$i $(tooldir)/include/$$i ; \ + $(INSTALL_DATA) $(srcdir)/../include/$$i $(tooldir)/include/w32api/$$i ; \ + echo "#include <w32api/$$i>" > $(tooldir)/include/$$i ; \ done # uninstall headers and libraries from a target specified directory @@ -162,9 +163,10 @@ install-libraries: all done install-headers: - $(mkinstalldirs) $(exec_prefix)/include + $(mkinstalldirs) $(exec_prefix)/include/w32api for i in $(HEADERS); do \ - $(INSTALL_DATA) $(srcdir)/../include/$$i $(exec_prefix)/include/$$i ; \ + $(INSTALL_DATA) $(srcdir)/../include/$$i $(exec_prefix)/include/w32api/$$i ; \ + echo "#include <w32api/$$i>" > $(exec_prefix)/include/$$i ; \ done # uninstall headers and libraries |