Merging MinGW changes

This commit is contained in:
Earnie Boyd 2002-05-28 13:20:28 +00:00
parent 4ad1e6fedb
commit 0c6190694d
2 changed files with 6 additions and 1 deletions

View File

@ -67,7 +67,7 @@ SUBDIRS = lib
PACKAGE = w32api
VERSION = 1.4
CYGRELEASE = 1
CYGRELEASE = 2
DIST_FILES = Makefile.in configure.in configure config.guess config.sub \
install-sh README ChangeLog TODO CONTRIBUTIONS

View File

@ -87,6 +87,7 @@ LD = @LD@
# headers
HEADERS = $(notdir $(wildcard $(srcdir)/../include/*.h))
GL_HEADERS = $(notdir $(wildcard $(srcdir)/../include/GL/*.h))
# libraries
@ -158,6 +159,10 @@ install-headers:
for i in $(HEADERS); do \
$(INSTALL_DATA) $(srcdir)/../include/$$i $(inst_includedir)/$$i ; \
done
$(mkinstalldirs) $(inst_includedir)/GL
for i in $(GL_HEADERS); do \
$(INSTALL_DATA) $(srcdir)/../include/GL/$$i $(inst_includedir)/GL/$$i ; \
done
# uninstall headers and libraries from a target specified directory
uninstall: uninstall-libraries uninstall-headers