| 88 |
|
|
| 89 |
# Source directories |
# Source directories |
| 90 |
|
|
| 91 |
DIRS = misc parser schema typing types compile runtime driver |
DIRS = misc parser schema typing types compile runtime driver query |
| 92 |
CLEAN_DIRS = $(DIRS) tools tests |
CLEAN_DIRS = $(DIRS) tools tests |
| 93 |
|
|
| 94 |
# Objects to build |
# Objects to build |
| 125 |
compile/compile.cmo \ |
compile/compile.cmo \ |
| 126 |
compile/operators.cmo \ |
compile/operators.cmo \ |
| 127 |
\ |
\ |
| 128 |
types/builtin.cmo driver/librarian.cmo driver/cduce.cmo |
types/builtin.cmo driver/librarian.cmo driver/cduce.cmo \ |
| 129 |
|
\ |
| 130 |
|
query/query_parse.cmo |
| 131 |
|
|
| 132 |
VALIDATE_OBJECTS := $(shell for o in $(OBJECTS); do echo $$o; if [ "$$o" = "schema/schema_parser.cmo" ]; then exit 0; fi; done) # all objects until schema_parser.cmo |
VALIDATE_OBJECTS := $(shell for o in $(OBJECTS); do echo $$o; if [ "$$o" = "schema/schema_parser.cmo" ]; then exit 0; fi; done) # all objects until schema_parser.cmo |
| 133 |
|
|