mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Relaxed EXEMODE jam sets
Let manual be installed in docsdir jam will also create ehelp from ehelp.in setting correct location Fixed a typo with RMDIR_UNSAFE so Cleandir can work now Added CopyDir rule Added missing linking libraries for capone
This commit is contained in:
15
docs/Jamfile
15
docs/Jamfile
@ -12,3 +12,18 @@ SubDir TOP docs ;
|
||||
|
||||
EdeManual index.txt introduction.txt jambuild.txt ;
|
||||
EdeManualWithToc dbus-usage.txt ;
|
||||
|
||||
MANUAL_FILES = [ Wildcard manual : *.html : manual ] ;
|
||||
MANUAL_IMGS = [ FDirName $(SUBDIR) manual images ] ;
|
||||
|
||||
# where will be installed
|
||||
MANUAL_INSTALL_DIR = [ FDirName $(EDEDOCDIR) manual ] ;
|
||||
|
||||
# install generated documents
|
||||
InstallData $(MANUAL_INSTALL_DIR) : $(MANUAL_FILES) ;
|
||||
|
||||
# copy directory with images
|
||||
# TODO: if someone erase images from installed directory, directory
|
||||
# will not be copied again until someone removes manual directory from installation path
|
||||
CopyDir $(MANUAL_INSTALL_DIR) : $(MANUAL_IMGS) ;
|
||||
Cleandir uninstall : $(MANUAL_INSTALL_DIR) ;
|
||||
|
Reference in New Issue
Block a user