all: runC runCC runJava runCC: testCC @echo -e '\n#\n# Parser for the C++ language\n#\n' ./testCC test1.pb runC: testC @echo -e '\n#\n# Parser for the C language\n#\n' ./testC test1.pb runJava: SimpleParser.class @echo -e '\n#\n# Parser for the Java language\n#\n' java SimpleParser test1.pb testCC : SimpleParser.cc g++ -g -DuseGMP -o testCC SimpleParser.cc -lgmpxx -lgmp testC : SimpleParser.c gcc -g -DuseGMP -o testC SimpleParser.c -lgmp SimpleParser.class : SimpleParser.java javac SimpleParser.java clean: rm testC testCC SimpleParser*.class