Blame | Last modification | View Log | RSS feed
# only works with the Java extension of yacc:# byacc/j from http://troi.lincom-asg.com/~rjamison/byacc/JAVAC = javacJAVA = java# targets:all: client serverbuild: clean client serverclean:rm -f *~ *.classclient:$(JAVAC) P3_Client.javaserver:$(JAVAC) P3_Server.java