Skip to content

Commit

Permalink
Fix syntax error: )
Browse files Browse the repository at this point in the history
  • Loading branch information
bi262934 committed Jan 30, 2025
1 parent c9417b7 commit d393459
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/cpp/naxriscv/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: MIT

MAKEFILE_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST)))))
MAKEFILE_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))

NAXRISCV_REPO?=$(realpath ../../../..)
NAXRISCV_GEN_FOLDER?=${NAXRISCV_REPO}
Expand Down Expand Up @@ -98,7 +98,7 @@ src/nax.h: ${NAXRISCV_HEADER}
cp ${NAXRISCV_HEADER} src/nax.h

compile: verilate src/nax.h
make -j${THREAD_COUNT} -C $(MAKEFILE_DIR)obj_dir/ -f $(MAKEFILE_DIR)VNaxRiscv.mk $(MAKEFILE_DIR)VNaxRiscv LIBS=${LIBS}
make -j${THREAD_COUNT} -C ${MAKEFILE_DIR}obj_dir/ -f ${MAKEFILE_DIR}VNaxRiscv.mk ${MAKEFILE_DIR}VNaxRiscv LIBS=${LIBS}

clean:
rm -rf obj_dir
Expand Down

0 comments on commit d393459

Please sign in to comment.