From: <ped...@us...> - 2009-02-08 02:28:11
|
Revision: 1225 http://cegcc.svn.sourceforge.net/cegcc/?rev=1225&view=rev Author: pedroalves Date: 2009-02-08 02:28:08 +0000 (Sun, 08 Feb 2009) Log Message: ----------- * Makefile.in (install-headers): New rule. Modified Paths: -------------- trunk/cegcc/src/mingw/ChangeLog.mingw32ce trunk/cegcc/src/mingw/Makefile.in Modified: trunk/cegcc/src/mingw/ChangeLog.mingw32ce =================================================================== --- trunk/cegcc/src/mingw/ChangeLog.mingw32ce 2009-02-08 00:18:40 UTC (rev 1224) +++ trunk/cegcc/src/mingw/ChangeLog.mingw32ce 2009-02-08 02:28:08 UTC (rev 1225) @@ -1,3 +1,7 @@ +2009-02-08 Pedro Alves <ped...@us...> + + * Makefile.in (install-headers): New rule. + 2009-02-07 Pedro Alves <ped...@us...> * mingwex/Makefile.in (LIB_OBJS): Also pull in $(GDTOA_OBJS). Modified: trunk/cegcc/src/mingw/Makefile.in =================================================================== --- trunk/cegcc/src/mingw/Makefile.in 2009-02-08 00:18:40 UTC (rev 1224) +++ trunk/cegcc/src/mingw/Makefile.in 2009-02-08 02:28:08 UTC (rev 1225) @@ -502,6 +502,15 @@ $(mkinstalldirs) $(inst_docdir) $(mkinstalldirs) $(mandir)/man$(mansection) +install-headers: install-dirs + for sub in . sys ; do \ + dstdir=$(inst_includedir)/$$sub ; \ + $(mkinstalldirs) $$dstdir ; \ + for i in $(srcdir)/include/$$sub/*.h ; do \ + $(INSTALL_DATA) $$i $$dstdir/`basename $$i` ; \ + done ; \ + done + install: all install-dirs $(install_dlls_host) for i in $(LIBS); do \ $(INSTALL_DATA) $$i $(inst_libdir)/$$i ; \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |