// program.prj -- Demeter/Java project file // $Id$ // The class dictionary file. CDFILE = program.cd // The behavior files. BEHFILES = program.beh // The name of the class which has the "main" method. MAIN = Main // The package your generated code belongs to. It should match // the package specified at the beginning of your .cd file. PACKAGE = // Code generator arguments. GENERATE_ARGS = -tracevis -displayvis -printvis -copyvis -equalvis // The directory into which .java files are generated. GENDIR = gen // Parser generator arguments. PARSEGEN_ARGS = // Java compiler arguments. COMPILE_ARGS = -depend -g -deprecation // The directory into which .class files are generated. CLASSDIR = gen/classes // The jarfile in which to package all the .class files. JARFILE = gen/program.jar // The Java virtual machine executable. JVM = java // Arguments for testing the program. TEST_ARGS = // Input file for testing the program. TEST_INPUT = program.input // Files and directories to be removed when cleaning up. CLEAN_ARGS = gen