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 = javac
JAVA = java
# targets:
all: client server
build: clean client server
clean:
rm -f *~ *.class
client:
$(JAVAC) P3_Client.java
server:
$(JAVAC) P3_Server.java