| 1 |
# Source directories |
# Source directories |
| 2 |
|
|
| 3 |
DIRS = parser typing types runtime driver |
DIRS = misc parser typing types runtime driver |
| 4 |
CLEAN_DIRS = $(DIRS) tools tests |
CLEAN_DIRS = $(DIRS) tools tests |
| 5 |
|
|
| 6 |
# Objects to build |
# Objects to build |
| 7 |
|
|
| 8 |
|
MISC = misc/pool.cmo |
| 9 |
|
|
| 10 |
PARSER = parser/lexer.cmo parser/location.cmo parser/ast.cmo parser/parser.cmo |
PARSER = parser/lexer.cmo parser/location.cmo parser/ast.cmo parser/parser.cmo |
| 11 |
|
|
| 12 |
TYPING = typing/typed.cmo typing/typer.cmo |
TYPING = typing/typed.cmo typing/typer.cmo |
| 29 |
|
|
| 30 |
TOPLEVEL = toplevel/toploop.cmo |
TOPLEVEL = toplevel/toploop.cmo |
| 31 |
|
|
| 32 |
OBJECTS = $(TYPES) $(PARSER) $(TYPING) $(RUNTIME) |
OBJECTS = $(MISC) $(TYPES) $(PARSER) $(TYPING) $(RUNTIME) |
| 33 |
XOBJECTS = $(OBJECTS:.cmo=.cmx) |
XOBJECTS = $(OBJECTS:.cmo=.cmx) |
| 34 |
XDRIVER = $(DRIVER:.cmo=.cmx) |
XDRIVER = $(DRIVER:.cmo=.cmx) |
| 35 |
|
|