// demeterj.prj -- DemeterJ project file // NOTE: This file may contain path names or other platform-dependent // information. You may need to edit them when moving from one // platform to another. // The class dictionary file. CDFILE = demeterj.cd // The behavior files. BEHFILES = main.beh utils.beh modules.beh project.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 = edu.neu.ccs.demeter.tools.demeterj // Code generator arguments. GENERATE_ARGS = -tracevis -displayvis -printvis -copyvis -equalvis // The directory into which .java files are generated. GENDIR = gen // The parser generator executable. PARSEGEN = javacc // Parser generator arguments. PARSEGEN_ARGS = // The Java compiler executable. COMPILER = javac COMPILE_ARGS = -J-mx64m -g -deprecation // Pizza compiler: //COMPILER = pc //COMPILE_ARGS = -nowarn -J-mx64m -java -g // GJ (Generic Java) compiler: //COMPILER = gjc //COMPILE_ARGS = -nowarn -J-mx32m -1.1 -g // Jikes compiler: //COMPILER = jikes //COMPILE_ARGS = -depend -g +E // The directory into which .class files are generated. CLASSDIR = ../classes // The Java virtual machine executable. JVM = java // Arguments for testing the program. TEST_ARGS = // Input file for testing the program. TEST_INPUT = // Files and directories to be removed when cleaning up. CLEAN_ARGS = gen ../classes