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:42: error: unreported exception IOException; must be caught or declared to be thrown
				reader.close();
				            ^
./edt/Parser.java:24: error: unreported exception FileNotFoundException; must be caught or declared to be thrown
			reader = new BufferedReader(new FileReader(filename));
			                            ^
./edt/Parser.java:29: error: unreported exception IOException; must be caught or declared to be thrown
			parseTitulo(reader.readLine());
			                           ^
./edt/Parser.java:30: error: unreported exception IOException; must be caught or declared to be thrown
			parseAutores(reader.readLine());
			                            ^
./edt/Parser.java:34: error: unreported exception IOException; must be caught or declared to be thrown
			while((line = reader.readLine()) != null)
			                             ^
5 errors
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 1