OpenRAM/openram.mk

12 lines
359 B
Makefile
Raw Normal View History

2021-11-02 23:07:18 +01:00
OPENRAM_HOME := $(abspath $(TOP_DIR)/compiler)
OPENRAM_TECH := $(abspath $(TOP_DIR)/technology)
OPENRAM_COMPILER := $(OPENRAM_HOME)/openram.py
ifeq (,$(wildcard $(OPENRAM_COMPILER)))
$(error Did not find '$(OPENRAM_COMPILER)' in '$(OPENRAM_HOME)' (from $$OPENRAM_HOME))
endif
export OPENRAM_HOME
export OPENRAM_TECH
2021-11-03 16:32:08 +01:00
UID = $(shell id -u)
GID = $(shell id -g)