Checking core structure...
compile_project:10: no matches found: *.in
rm -f rest-core.jar `find . -name \*.class`
(cd src; javac -encoding UTF-8 `find . -name \*.java`)
(cd src; jar cf ../rest-core.jar `find . -name \*.class -o -name \*.java`)
Checking manager interface structure...
rm -f rest-textui-manager.jar `find . -name \*.class`
(cd src; javac -cp /usr/share/java/po-uilib.jar:/usr/share/java/rest-textui-manager-support.jar:../../rest-core/rest-core.jar -encoding UTF-8 `find . -name \*.java`)
./rest/textui/search/ShowVegetarianFood.java:10: error: cannot find symbol
import rest.core.food.FoodTypeSearch;
                     ^
  symbol:   class FoodTypeSearch
  location: package rest.core.food
./rest/textui/search/ShowClientsWithClosedOrders.java:22: error: cannot find symbol
		String[] info = _receiver.showClientsWithClosedOrders();
		                         ^
  symbol:   method showClientsWithClosedOrders()
  location: variable _receiver of type Receiver
  where Receiver is a type-variable:
    Receiver extends Object declared in class Command
./rest/textui/search/ShowVegetarianFood.java:24: error: cannot find symbol
		String[] info = _receiver.showFood(new FoodTypeSearch(_receiver,true));
		                                       ^
  symbol:   class FoodTypeSearch
  location: class ShowVegetarianFood
3 errors
make: *** [all] Error 1