You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ar...@apache.org on 2006/01/09 23:30:58 UTC

svn commit: r367417 - in /incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm: jc/Makefile.am libjc/Makefile.am tools/cfdump/Makefile.am tools/jcjavah/Makefile.am

Author: archie
Date: Mon Jan  9 14:30:52 2006
New Revision: 367417

URL: http://svn.apache.org/viewcvs?rev=367417&view=rev
Log:
Fix bug with compiler flags where it was not possible to build the
source when the source and build directories were not the same.

Modified:
    incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/jc/Makefile.am
    incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/libjc/Makefile.am
    incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/tools/cfdump/Makefile.am
    incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/tools/jcjavah/Makefile.am

Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/jc/Makefile.am
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/jc/Makefile.am?rev=367417&r1=367416&r2=367417&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/jc/Makefile.am (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/jc/Makefile.am Mon Jan  9 14:30:52 2006
@@ -8,3 +8,5 @@
 
 AM_CFLAGS=	$(CFLAGS) @JC_CFLAGS@
 
+AM_CPPFLAGS=	-I$(top_srcdir)/include
+

Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/libjc/Makefile.am
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/libjc/Makefile.am?rev=367417&r1=367416&r2=367417&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/libjc/Makefile.am (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/libjc/Makefile.am Mon Jan  9 14:30:52 2006
@@ -92,5 +92,7 @@
 AM_CFLAGS+=		-D_AC_SYSCONFDIR=\"$(sysconfdir)\"
 AM_CFLAGS+=		-D_JC_CLASSPATH_HOME=\"@CLASSPATH_HOME@\"
 
-AM_CPPFLAGS=		-I$(srcdir)/native -I$(srcdir)/arch
+AM_CPPFLAGS=		-I$(top_srcdir)/include
+AM_CPPFLAGS+=		-I$(srcdir)/native
+AM_CPPFLAGS+=		-I$(srcdir)/arch
 

Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/tools/cfdump/Makefile.am
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/tools/cfdump/Makefile.am?rev=367417&r1=367416&r2=367417&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/tools/cfdump/Makefile.am (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/tools/cfdump/Makefile.am Mon Jan  9 14:30:52 2006
@@ -23,6 +23,7 @@
 AM_CFLAGS+=	-D_AC_LIBDIR=\"$(libdir)\"
 AM_CFLAGS+=	-D_JC_CLASSPATH_HOME=\"@CLASSPATH_HOME@\"
 
-AM_CPPFLAGS=	-I$(top_srcdir)/libjc
+AM_CPPFLAGS=	-I$(top_srcdir)/include
+AM_CPPFLAGS+=	-I$(top_srcdir)/libjc
 AM_CPPFLAGS+=	-I$(top_srcdir)/libjc/arch
 

Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/tools/jcjavah/Makefile.am
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/tools/jcjavah/Makefile.am?rev=367417&r1=367416&r2=367417&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/tools/jcjavah/Makefile.am (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/jchevm/jchevm/tools/jcjavah/Makefile.am Mon Jan  9 14:30:52 2006
@@ -1,4 +1,4 @@
-## $Id: Makefile.am,v 1.2 2005/01/09 02:06:56 archiecobbs Exp $
+## $Id$
 
 jcbindir=		$(bindir)
 
@@ -25,6 +25,7 @@
 AM_CFLAGS+=	-D_AC_DATADIR=\"$(datadir)\"
 AM_CFLAGS+=	-D_AC_LIBDIR=\"$(libdir)\"
 
-AM_CPPFLAGS=	-I$(top_srcdir)/libjc
+AM_CPPFLAGS=	-I$(top_srcdir)/include
+AM_CPPFLAGS+=	-I$(top_srcdir)/libjc
 AM_CPPFLAGS+=	-I$(top_srcdir)/libjc/arch