| 66 |
|
|
| 67 |
# Source directories |
# Source directories |
| 68 |
|
|
| 69 |
DIRS = misc parser schema typing types compile runtime driver module |
DIRS = misc parser schema typing types compile runtime driver |
| 70 |
CLEAN_DIRS = $(DIRS) tools tests |
CLEAN_DIRS = $(DIRS) tools tests |
| 71 |
|
|
| 72 |
# Objects to build |
# Objects to build |
| 75 |
misc/stats.cmo \ |
misc/stats.cmo \ |
| 76 |
misc/serialize.cmo misc/custom.cmo \ |
misc/serialize.cmo misc/custom.cmo \ |
| 77 |
misc/state.cmo misc/pool.cmo misc/encodings.cmo misc/bool.cmo \ |
misc/state.cmo misc/pool.cmo misc/encodings.cmo misc/bool.cmo \ |
| 78 |
misc/pretty.cmo misc/ns.cmo \ |
misc/pretty.cmo misc/ns.cmo misc/inttbl.cmo \ |
| 79 |
\ |
\ |
| 80 |
types/sortedList.cmo types/boolean.cmo types/ident.cmo \ |
types/sortedList.cmo types/boolean.cmo types/ident.cmo \ |
| 81 |
types/intervals.cmo types/chars.cmo types/atoms.cmo \ |
types/intervals.cmo types/chars.cmo types/atoms.cmo \ |
| 100 |
compile/compile.cmo \ |
compile/compile.cmo \ |
| 101 |
compile/operators.cmo \ |
compile/operators.cmo \ |
| 102 |
\ |
\ |
| 103 |
types/builtin.cmo driver/cduce.cmo |
types/builtin.cmo driver/librarian.cmo driver/cduce.cmo |
| 104 |
|
|
| 105 |
CDUCE = $(OBJECTS) driver/run.cmo |
CDUCE = $(OBJECTS) driver/run.cmo |
| 106 |
WEBIFACE = $(OBJECTS) driver/examples.cmo driver/webiface.cmo |
WEBIFACE = $(OBJECTS) driver/examples.cmo driver/webiface.cmo |
| 173 |
(cd web/examples; ../../cduce --quiet build.cd --arg examples.xml) |
(cd web/examples; ../../cduce --quiet build.cd --arg examples.xml) |
| 174 |
|
|
| 175 |
webpages: cduce web/site.cdo |
webpages: cduce web/site.cdo |
| 176 |
(cd web; ../cduce --run site.cdo --arg site.xml) |
(cd web; ../cduce --run site --arg site.xml) |
| 177 |
|
|
| 178 |
web/site.cdo: cduce web/site.cd |
web/site.cdo: cduce web/xhtml.cdo web/site.cd |
| 179 |
./cduce --compile web/site.cd |
(cd web; ../cduce --compile site) |
| 180 |
|
|
| 181 |
|
web/xhtml.cdo: cduce web/xhtml.cd |
| 182 |
|
(cd web; ../cduce --compile xhtml) |
| 183 |
|
|
| 184 |
website: webpages webiface |
website: webpages webiface |
| 185 |
|
|