mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
80 lines
1.9 KiB
Plaintext
80 lines
1.9 KiB
Plaintext
#
|
|
# $Id$
|
|
#
|
|
# Part of Equinox Desktop Environment (EDE).
|
|
# Copyright (c) 2000-2007 EDE Authors.
|
|
#
|
|
# This program is licensed under terms of the
|
|
# GNU General Public License version 2 or newer.
|
|
# See COPYING for details.
|
|
|
|
ASCIIDOC = "$(TOP)/docs/asciidoc/asciidoc.py" ;
|
|
DOCDIR = "$(TOP)/docs" ;
|
|
MANUALDIR = "$(DOCDIR)/manual" ;
|
|
|
|
# Must be relative to "docs" dir
|
|
MANUALICONS = "images" ;
|
|
|
|
# EdeManual [file] : [optinal-images] ;
|
|
# Creates [file].html via asciidoc. If [optinal-images] are
|
|
# given, they will be copied in $(DOCICONS).
|
|
rule EdeManual
|
|
{
|
|
if ! $(ASCIIDOC) {
|
|
Echo "ASCIIDOC not defined; documentation will not be built !" ;
|
|
return ;
|
|
}
|
|
|
|
local html_ext = ".html" ;
|
|
local path = $(SEARCH_SOURCE) ;
|
|
|
|
local i source target ;
|
|
for i in $(<) {
|
|
source = [ FFileName $(path) $(i) ] ;
|
|
# strip directory part so we can prepend
|
|
# another one (used as output directory)
|
|
target = $(source:D=) ;
|
|
|
|
# set output extension (asciidoc does not do that)
|
|
# and grist to prevent collision
|
|
target = $(target:S=$(html_ext):G="$(target)-html") ;
|
|
|
|
LocalDepends $(target) : $(source) ;
|
|
LocalDepends all : $(target) ;
|
|
LocalDepends doc : $(target) ;
|
|
|
|
# set output to $(MANUALDIR) directory
|
|
MakeLocate $(target) : $(MANUALDIR) ;
|
|
|
|
AsciiDoc1 $(target) : $(source) ;
|
|
LocalClean clean : $(target) ;
|
|
}
|
|
|
|
# copy images, if given
|
|
local imgdir = [ FDirName $(MANUALDIR) $(MANUALICONS) ] ;
|
|
if $(>) {
|
|
for i in $(>) {
|
|
source = [ FFileName $(path) $(i) ] ;
|
|
target = $(source:D=$(imgdir)) ;
|
|
|
|
MkDir $(imgdir) ;
|
|
|
|
LocalDepends $(target) : $(imgdir) ;
|
|
LocalDepends $(target) : $(source) ;
|
|
LocalDepends all : $(target) ;
|
|
LocalDepends doc : $(target) ;
|
|
|
|
Copy $(target) : $(source) ;
|
|
LocalClean clean : $(target) ;
|
|
}
|
|
}
|
|
}
|
|
|
|
actions AsciiDoc1
|
|
{
|
|
$(ASCIIDOC) -a icons -a iconsdir=$(MANUALICONS) -a edeversion="EDE 2.0 alpha 1" -o $(<) $(>)
|
|
}
|
|
|
|
NotFile doc ;
|
|
Always doc ;
|