File: makefile

package info (click to toggle)
vnc-java 3.3.3r2-3
  • links: PTS
  • area: contrib
  • in suites: woody
  • size: 208 kB
  • ctags: 290
  • sloc: java: 2,078; makefile: 82
file content (14 lines) | stat: -rw-r--r-- 311 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

.SUFFIXES: .java .class

.java.class:
	javac $<

CLASSES = vncviewer.class rfbProto.class authenticationPanel.class \
	  vncCanvas.class optionsFrame.class clipboardFrame.class \
	  animatedMemoryImageSource.class DesCipher.class

all: $(CLASSES) vncviewer.jar

vncviewer.jar: $(CLASSES)
	jar cf $@ $(CLASSES)