This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
############################################################################### |
| 2 |
# FILE: Makefile |
| 3 |
# |
| 4 |
# Top-level Makefile for ASR |
| 5 |
############################################################################### |
| 6 |
|
| 7 |
# remember root of ASR source tree |
| 8 |
export ASR_ROOT_DIR := $(call my-dir) |
| 9 |
export ASR_MAKE_DIR := $(ASR_ROOT_DIR)/make/asr |
| 10 |
|
| 11 |
# perform sub-makes |
| 12 |
ifneq ($(TARGET_SIMULATOR),true) # not 64 bit clean |
| 13 |
include $(call all-subdir-makefiles) |
| 14 |
endif |