actually, I found this that helped me a bit:
http://doc.qt.nokia.com/4.3/qmake-en....html#installs
and i put this into the Makefile(which is real, generated from real program and containing a lot of raws)
Qt Code:
  1. :
  2. documentation.path = to/
  3. documentation.files = from/*
  4. INSTALLS += documentation
  5. ...
  6. ...
  7. ####### Install
  8.  
  9. install: $(INSTALLS)
  10. uninstall: FORCE
  11. FORCE:
To copy to clipboard, switch view to plain text mode 
I've placed a file to from/ and I want it to be copied to to/
but when I give make install it says make: *** No rule to make target `documentation', needed by `install'. Stop.

What do I do wrong?