Silence some makefile commands

This commit is contained in:
mrg
2021-11-03 08:42:00 -07:00
parent e31bab26ae
commit 540711bcf2
2 changed files with 16 additions and 5 deletions
+13
View File
@@ -1,3 +1,6 @@
DOCKER_DIR := $(realpath $(dir $(lastword $(MAKEFILE_LIST))))
TOP_DIR := $(realpath $(DOCKER_DIR)/..)
include $(TOP_DIR)/openram.mk
TAG_DATE := $(shell date +%F)
all: build push
@@ -15,3 +18,13 @@ push:
.PHONY: pull
pull:
docker pull vlsida/openram-ubuntu:latest
mount:
docker run -it -v $(TOP_DIR):/openram \
-v $(SKY130_PDK):$(SKY130_PDK) \
-e PDK_ROOT=$(PDK_ROOT) \
-e OPENRAM_HOME=/openram/compiler \
-e OPENRAM_TECH=/openram/technology \
--user $(UID):$(GID) \
vlsida/openram-ubuntu:latest
.PHONY: mount