Files
mercury/java/runtime/Constants.java.in
Julien Fischer 68a2800d8c Get configure to add a comment to Constants.java and Native.java
Estimated hours taken: 0.1
Branches: main

Get configure to add a comment to Constants.java and Native.java
saying that they are automatically generated.

Update the java/runtime/.cvsignore.

java/runtime/Constants.java.in:
java/runtime/Native.java.in:
	Get configure to add a comment saying that these files
	are automatically generated.

java/runtime/.cvsignore:
	Ignore the automatically generated file Native.java.
2004-02-11 04:40:07 +00:00

17 lines
544 B
Java

// @configure_input@
//
// Copyright (C) 2001-2004 The University of Melbourne.
// This file may only be copied under the terms of the GNU Library General
// Public License - see the file COPYING.LIB in the Mercury distribution.
//
// This class is used to store miscellaneous Mercury-related constants.
// At the moment it just stores the library version.
//
package mercury.runtime;
public class Constants {
public static final java.lang.String MR_VERSION = "@VERSION@";
public static final java.lang.String MR_FULLARCH = "@FULLARCH@";
}