# # makefile for some tests about xml2panel demo # .SUFFIXES: .SUFFIXES: .class .java # autocompile all .class from .java files .java.class: javac $< # COMPILE: compile only all files compile: myPanel.class TestFrame.class # CLEAN: cleans up any autogenerated and compiled files clean: rm -rf *.class myPanel.java # RUN: nice method to compile and run the app run: compile java TestFrame # Specialhandling for the xml2panel Compiler myPanel.class: step.xml xml2panel step.xml && javac myPanel.java