home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 September / PCO_0998.ISO / filesbbs / frei / vnc-java.arj / VNC-JAVA.ZIP / makefile < prev    next >
Encoding:
Makefile  |  1998-05-13  |  314 b   |  15 lines

  1.  
  2. .SUFFIXES: .java .class
  3.  
  4. .java.class:
  5.     javac -O $<
  6.  
  7. CLASSES = vncviewer.class rfbProto.class authenticationPanel.class \
  8.       vncCanvas.class optionsFrame.class clipboardFrame.class \
  9.       animatedMemoryImageSource.class DesCipher.class
  10.  
  11. all: $(CLASSES) vncviewer.jar
  12.  
  13. vncviewer.jar: $(CLASSES)
  14.     jar cf $@ $(CLASSES)
  15.