mirror of
https://github.com/google/cpu_features.git
synced 2025-04-28 15:33:37 +02:00

* Add documentation * Add .dockerignore: minimize docker context size to improve speed * Add Makefile: to easily run various docker stages * Add a CMake sample project to check CMake install rules
8 lines
98 B
Bash
Executable File
8 lines
98 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
rm -f ./*.svg ./*.png
|
|
for i in *.dot; do
|
|
plantuml -Tsvg "$i";
|
|
done
|