You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
433 B
21 lines
433 B
![]()
18 years ago
|
#
|
||
|
# Making the VNC applet.
|
||
|
#
|
||
|
|
||
|
CLASSES = VncViewer.class RfbProto.class AuthPanel.class VncCanvas.class \
|
||
|
OptionsFrame.class ClipboardFrame.class ButtonPanel.class \
|
||
|
DesCipher.class
|
||
|
|
||
|
PAGES = index.vnc shared.vnc noshared.vnc hextile.vnc zlib.vnc tight.vnc
|
||
|
|
||
|
all: $(CLASSES) VncViewer.jar
|
||
|
|
||
|
VncViewer.jar: $(CLASSES)
|
||
|
@$(JavaArchive)
|
||
|
|
||
|
export:: $(CLASSES) VncViewer.jar $(PAGES)
|
||
|
@$(ExportJavaClasses)
|
||
|
|
||
|
clean::
|
||
|
$(RM) *.class *.jar
|