blob: a1686490e8e66b18e2c92166b4da8595fde790b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
import type : register ;
import generators : register-standard ;
type.register XSLT : xslt ;
generators.register-standard xslt.h : XSLT : H ;
h base-xslt : xslt/base.xslt : <slicer>yes ;
h signup-xslt : xslt/signup.xslt : <slicer>yes ;
h news-xslt : xslt/news.xslt : <slicer>yes ;
lib exslt ;
lib xslt : : : : <include>/usr/include/libxslt ;
lib xml2 : : : : <include>/usr/include/libxml2 ;
lib esmtp ;
lib slicer-xml ;
lib boost_system ;
lib gentoobrowse-service-notifications :
[ glob *.ice *.cpp ]
:
<slicer>yes
<library>xslt
<library>xml2
<library>esmtp
<library>../../..//libxmlpp
<library>boost_system
<library>slicer-xml
<library>../../domain//gentoobrowse-domain
<implicit-dependency>../../domain//gentoobrowse-domain
<dependency>base-xslt
<dependency>signup-xslt
<dependency>news-xslt
: :
<include>.
;
actions xslt.h
{
( cd $(2:D) ; xxd -i $(2:B)$(2:S) ) > $(1)
}
IMPORT $(__name__) : xslt.h : : xslt.h ;
|