all: DisplayRaw.class Test.class

%.class: %.java
	javac $<

test: Test.class DisplayRaw.class
	java Test
