Yeah, I agree. I hadn't noticed this, probably because I use the
'servertarball' make target to package everything up after building.
-brian
On Wed, Jun 1, 2011 at 1:43 AM, Martin Koegler
wrote:
> java/src/com/tigervnc/vncviewer/Makefile:
> | install: $(CLASSES) $(ARCHIVE)
> | $(CP) $(C
java/src/com/tigervnc/vncviewer/Makefile:
| install: $(CLASSES) $(ARCHIVE)
| $(CP) $(CLASSES) $(ARCHIVE) $(PAGES) $(INSTALL_DIR)
Wouldn't be the following better:
install: $(PAGES) $(ARCHIVE)
$(CP) $(ARCHIVE) $(PAGES) $(INSTALL_DIR)
I don't understand, why it installs the class fi