Checking core structure...
compile_project:10: no matches found: *.in
rm -f edt-core.jar `find . -name \*.class`
(cd src; javac -encoding UTF-8 `find . -name \*.java`)
./edt/Parser.java:3: error: package edt.core does not exist
import edt.core.Author;
               ^
./edt/Parser.java:4: error: package edt.core does not exist
import edt.core.Section;
               ^
./edt/Parser.java:5: error: package edt.core does not exist
import edt.core.Document;
               ^
./edt/Parser.java:6: error: package edt.core does not exist
import edt.core.Paragraph;
               ^
./edt/Parser.java:33: error: constructor Document in class Document cannot be applied to given types;
            _document = new Document();
                        ^
  required: String,String
  found: no arguments
  reason: actual and formal argument lists differ in length
./edt/Parser.java:68: error: incompatible types: int cannot be converted to String
            _document.addSection(-1, _curSection);
                                 ^
./edt/Parser.java:70: error: method indexElement in class Document cannot be applied to given types;
                _document.indexElement(content[1], _curSection);
                         ^
  required: TextElement
  found: String,Section
  reason: actual and formal argument lists differ in length
./edt/Parser.java:75: error: incompatible types: int cannot be converted to String
            _curSection.addParagraph(-1, par);
                                     ^
Note: Some messages have been simplified; recompile with -Xdiags:verbose to get full output
8 errors
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 1