Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove git-submodule-init make target #13

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ endif

all: compile-stage2

git-submodule-init:
git submodule update --init

build: build-generator build-merger

build-generator:
Expand All @@ -60,7 +57,7 @@ build-patcher-spike: pspike/pspike.cc
unittest:
go test ./...

generate-stage1: clean-out git-submodule-init build
generate-stage1: clean-out build
@mkdir -p ${OUTPUT_STAGE1}
build/generator -VLEN ${VLEN} -XLEN ${XLEN} -split=${SPLIT} -integer=${INTEGER} -stage1output ${OUTPUT_STAGE1} -configs ${CONFIGS}

Expand Down Expand Up @@ -105,7 +102,6 @@ clean: clean-out
rm -rf build/

.PHONY: all \
git-submodule-init \
build build-generator unittest \
generate-stage1 compile-stage1 $(tests) \
$(tests_patch) generate-stage2 compile-stage2 $(tests_stage2) \
Expand Down