X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/44e9ce02788f6c438b9c5383b34c09b8a440b74b..741d951a0891942a7c26ad070f0292ee65a82c49:/examples/java/suspend/Makefile.in diff --git a/examples/java/suspend/Makefile.in b/examples/java/suspend/Makefile.in index 234bc7606d..8d948fae54 100644 --- a/examples/java/suspend/Makefile.in +++ b/examples/java/suspend/Makefile.in @@ -14,6 +14,12 @@ @SET_MAKE@ +# Copyright (c) 2004-2007. The SimGrid team. All right reserved. + +# This file is part of the SimGrid project. This is free software: +# You can redistribute and/or modify it under the terms of the +# GNU LGPL (v2.1) licence. + ######################### # How to compile the code # All this to only get a dumb javac *java... Automake still have issues with java @@ -132,6 +138,7 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PTH_STACK_GROWTH = @PTH_STACK_GROWTH@ RANLIB = @RANLIB@ +SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SIMGRID_DEP = @SIMGRID_DEP@ @@ -197,16 +204,18 @@ target_os = @target_os@ target_vendor = @target_vendor@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -EXTRA_DIST = suspend_deployment.xml suspend_platform.xml surfxml.dtd +EXTRA_DIST = suspend_deployment.xml suspend_platform.xml $(JAVA_SRC) # Declare sources: -noinst_JAVA = DreamMaster.java LazyGuy.java SuspendTest.java +JAVA_SRC = DreamMaster.java LazyGuy.java SuspendTest.java +JAVA_TESTS = SuspendTest.class +TESTS = $(JAVA_TESTS) -# Declare test class -TESTS = SuspendTest.class -XFAIL_TESTS = SuspendTest.class +# Declare test class +@HAVE_JAVA_TRUE@noinst_JAVA = $(JAVA_SRC) JAVAROOT = . -AM_JAVACFLAGS = -classpath $(top_srcdir)/src/simgrid.jar +AM_JAVACFLAGS = -classpath $(top_srcdir)/src/simgrid.jar:. +@HAVE_JAVA_FALSE@TESTS_ENVIRONMENT = DO_NOT_HAVE_JAVA=1 $(srcdir)/../runtest ########################## # What to do on make check @@ -215,9 +224,9 @@ AM_JAVACFLAGS = -classpath $(top_srcdir)/src/simgrid.jar # We need to override the CLASSPATH to add simgrid.jar and current dir to the picture # We also need to express dependencies manually (in each test dir) # Damn... -TESTS_ENVIRONMENT = LD_LIBRARY_PATH="$(top_srcdir)/src/.libs:$$LD_LIBRARY_PATH" \ - CLASSPATH=".:$(top_srcdir)/src/simgrid.jar:$$CLASSPATH" \ - $(srcdir)/../runtest +@HAVE_JAVA_TRUE@TESTS_ENVIRONMENT = LD_LIBRARY_PATH="$(top_srcdir)/src/.libs:$$LD_LIBRARY_PATH" \ +@HAVE_JAVA_TRUE@ CLASSPATH=".:$(top_srcdir)/src/simgrid.jar:$$CLASSPATH" \ +@HAVE_JAVA_TRUE@ $(srcdir)/../runtest all: all-am