Skip to content

Commit 51d358f

Browse files
authored
Merge pull request #3230 from Pinata-Consulting/makefile-nits
makefile: minor cleanups
2 parents 8643589 + 97dc7be commit 51d358f

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

flow/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ SHELL := /usr/bin/env bash
146146
# location
147147
# - default is current install / clone directory
148148
ifeq ($(origin FLOW_HOME), undefined)
149-
FLOW_HOME := $(abspath $(dir $(firstword $(MAKEFILE_LIST))))
149+
FLOW_HOME := $(abspath $(dir $(firstword $(MAKEFILE_LIST))))
150150
endif
151151
export FLOW_HOME
152152

flow/scripts/variables.mk

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,6 @@
33
# lazy evaluation, conditional code, include statements,
44
# etc.
55

6-
# Setup variables to point to root / head of the OpenROAD directory
7-
# - the following settings allowed user to point OpenROAD binaries to different
8-
# location
9-
# - default is current install / clone directory
10-
ifeq ($(origin FLOW_HOME), undefined)
11-
FLOW_HOME := $(abspath $(dir $(firstword $(MAKEFILE_LIST)))/..)
12-
endif
13-
export FLOW_HOME
14-
156
export DESIGN_NICKNAME?=$(DESIGN_NAME)
167

178
#-------------------------------------------------------------------------------
@@ -21,7 +12,6 @@ export DESIGN_NICKNAME?=$(DESIGN_NAME)
2112
# - utils, scripts, test - default is under current directory
2213
export DESIGN_HOME ?= $(FLOW_HOME)/designs
2314
export PLATFORM_HOME ?= $(FLOW_HOME)/platforms
24-
# WORK_HOME is set up in flow/Makefile
2515

2616
export UTILS_DIR ?= $(FLOW_HOME)/util
2717
export SCRIPTS_DIR ?= $(FLOW_HOME)/scripts

0 commit comments

Comments
 (0)