dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnet ChangeLog,1.2033,1.2034 Makefile.am,1.1


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnet ChangeLog,1.2033,1.2034 Makefile.am,1.19,1.20
Date: Sun, 29 Dec 2002 16:32:34 -0500

Update of /cvsroot/dotgnu-pnet/pnet
In directory subversions:/tmp/cvs-serv21544

Modified Files:
        ChangeLog Makefile.am 
Log Message:


Put the libffi and libgc logic back because we need to be able to turn
libffi and libgc off in configure, and the previous change did not
support this.


Index: ChangeLog
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/ChangeLog,v
retrieving revision 1.2033
retrieving revision 1.2034
diff -C2 -r1.2033 -r1.2034
*** ChangeLog   29 Dec 2002 14:12:24 -0000      1.2033
--- ChangeLog   29 Dec 2002 21:32:32 -0000      1.2034
***************
*** 1,3 ****
--- 1,9 ----
  
+ 2002-12-30  Rhys Weatherley  <address@hidden>
+ 
+       * Makefile.am: put the libffi and libgc logic back because we
+       need to be able to turn libffi and libgc off in configure, and
+       the previous change did not support this.
+ 
  2002-12-29  Gopal.V  <address@hidden>
        

Index: Makefile.am
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/Makefile.am,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** Makefile.am 29 Dec 2002 14:12:24 -0000      1.19
--- Makefile.am 29 Dec 2002 21:32:32 -0000      1.20
***************
*** 1,3 ****
! SUBDIRS = . libgc libffi include support image dumpasm engine ilasm ildasm \
                  ilalink ilsize ilnative ilheader ilfind ildiff ildd codegen 
cscc \
                  resgen ildb csdoc csant clrwrap samples doc tests
--- 1,72 ----
! SUBDIRS = . include support image dumpasm engine ilasm ildasm \
                  ilalink ilsize ilnative ilheader ilfind ildiff ildd codegen 
cscc \
                  resgen ildb csdoc csant clrwrap samples doc tests
+ 
+ ## We build libffi and libgc carefully, because we need to be
+ ## able to turn them off in "configure".
+ 
+ .PHONY: libffi-all-local libgc-all-local \
+               libffi-clean-local libgc-clean-local \
+               libffi-distclean-local libgc-distclean-local \
+               libffi-install-local libgc-install-local \
+               libffi-uninstall-local libgc-uninstall-local
+ 
+ all-local: libffi-all-local libgc-all-local
+ clean-local: libffi-clean-local libgc-clean-local
+ distclean-local: libffi-distclean-local libgc-distclean-local
+ install-exec-local: libffi-install-local libgc-install-local
+ uninstall-local: libffi-uninstall-local libgc-uninstall-local
+ 
+ if USING_LIBFFI
+ 
+ libffi-all-local:
+       (cd libffi && $(MAKE) $(AM_MAKEFLAGS) all)
+ 
+ libffi-clean-local:
+       (cd libffi && $(MAKE) $(AM_MAKEFLAGS) clean)
+ 
+ libffi-distclean-local:
+       (cd libffi && $(MAKE) $(AM_MAKEFLAGS) distclean)
+ 
+ libffi-install-local:
+       (cd libffi && $(MAKE) $(AM_MAKEFLAGS) install)
+ 
+ libffi-uninstall-local:
+       (cd libffi && $(MAKE) $(AM_MAKEFLAGS) uninstall)
+ 
+ else
+ 
+ libffi-all-local:
+ libffi-clean-local:
+ libffi-distclean-local:
+ libffi-install-local:
+ libffi-uninstall-local:
+ 
+ endif
+ 
+ if USING_LIBGC
+ 
+ libgc-all-local:
+       (cd libgc && $(MAKE) $(AM_MAKEFLAGS) all)
+ 
+ libgc-clean-local:
+       (cd libgc && $(MAKE) $(AM_MAKEFLAGS) clean)
+ 
+ libgc-distclean-local:
+       (cd libgc && $(MAKE) $(AM_MAKEFLAGS) distclean)
+ 
+ libgc-install-local:
+       (cd libgc && $(MAKE) $(AM_MAKEFLAGS) install)
+ 
+ libgc-uninstall-local:
+       (cd libgc && $(MAKE) $(AM_MAKEFLAGS) uninstall)
+ 
+ else
+ 
+ libgc-all-local:
+ libgc-clean-local:
+ libgc-distclean-local:
+ libgc-install-local:
+ libgc-uninstall-local:
+ 
+ endif




reply via email to

[Prev in Thread] Current Thread [Next in Thread]