mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
5ccae43552
The minimal-footprint Ada runtime for implementing library-like functionality in SPARK is now called "spark" runtime. The full Ada runtime for entire components written in Ada and using the libc as glue to the underlying system will move to the world repository as "ada" runtime. Issue #3144
12 lines
337 B
PHP
12 lines
337 B
PHP
include $(REP_DIR)/lib/import/import-spark.mk
|
|
|
|
all: ada_source_path
|
|
|
|
ada_source_path: ada_object_path
|
|
$(VERBOSE)echo $(ADA_RTS_SOURCE) > $(ADA_RTS)/ada_source_path
|
|
$(VERBOSE)echo $(ADA_RUNTIME_DIR) >> $(ADA_RTS)/ada_source_path
|
|
|
|
ada_object_path:
|
|
$(VERBOSE)mkdir -p $(ADA_RTS)
|
|
$(VERBOSE)echo $(ADA_RTS) > $(ADA_RTS)/ada_object_path
|