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

Add gspecgram #7

Merged
merged 2 commits into from
Jan 18, 2022
Merged
Changes from 1 commit
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
Next Next commit
parallel make
  • Loading branch information
takenori-y committed Jan 18, 2022
commit 92141d606e60776ac7a2524d4ae4dbb27b66e051
6 changes: 3 additions & 3 deletions tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ venv_dev:

bats.done:
rm -rf bats
git clone https://github.com/bats-core/bats-core.git bats --depth 1
git clone https://github.com/bats-core/bats-core.git bats -b master --single-branch --depth 1
touch bats.done

doxygen.done:
rm -rf doxygen
git clone https://github.com/doxygen/doxygen.git -b Release_1_9_1 --depth 1
cd doxygen; mkdir -p build; cd build; cmake -G "Unix Makefiles" ..; make
git clone https://github.com/doxygen/doxygen.git -b Release_1_9_1 --single-branch --depth 1
cd doxygen; mkdir -p build; cd build; cmake -G "Unix Makefiles" ..; make -j $(JOBS)
touch doxygen.done

shellcheck.done:
Expand Down