| include ../../src/Makefile.incl |
| # Makefile for directory ./ui |
| # |
| # This makefile depends on the following environment variables |
| # already being defined: |
| # |
| # JAVAC Java compiler (with options) |
| # RM Host delete file command (with options) |
| # |
| # In addition, the CLASSPATH environment variable must |
| # include the absolute path of the base source directory. |
| |
| TARGETS=\ |
| DefaultImages.class\ |
| DOMParserSaveEncoding.class\ |
| DOMTree.class\ |
| DOMTreeFull.class\ |
| TreeView.class\ |
| TreeViewer.class |
| |
| all: dirs compile |
| |
| dirs: |
| |
| compile: ${TARGETS} |
| |
| .SUFFIXES: |
| |
| .SUFFIXES: .class .java |
| |
| .java.class: |
| ${JAVAC} $< |
| |
| touch ../../src/classfiles_updated |
| |
| clean: |
| ${RM} *.class |
| |