-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcbf.xml
25 lines (25 loc) · 822 Bytes
/
cbf.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<buildsystem>
<file name="all">
<dep>unmake</dep>
</file>
<file name="unmake">
<command>perl -c unmake.pl</command>
<command>cp unmake.pl unmake</command>
<dep>unmake.pl</dep>
<dep>parse</dep>
<dep>analyze</dep>
</file>
<file name="parse">
<command>perl -c parser/CommonBuildFormat.pm</command>
<command>perl -c parser/parser.pl</command>
<command>cp parser/parser.pl ./parse</command>
<dep>parser/parser.pl</dep>
<dep>parser/CommonBuildFormat.pm</dep>
</file>
<file name="analyze">
<command>sbcl --load analyzer/wrap-analyzer.lisp</command>
<dep>analyzer/analyzer.lisp</dep>
<dep>analyzer/wrap-analyzer.lisp</dep>
</file>
</buildsystem>