Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lmaddox committed Aug 3, 2023
1 parent b17290c commit 124db94
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,21 @@ set -euxo nounset
(( $# ))

rm -rf build
cmake -S . -B build \
-GNinja -DCMAKE_BUILD_TYPE=Debug
cmake -S . -B build # \
# -GNinja -DCMAKE_BUILD_TYPE=Debug
# -DKERNEL_HEADERS_DIR=$HOME/usr/src \
# -DKERNEL_MODULES_DIR=$HOME/usr/lib/modules/6.2.10-1-aarch64-ARCH/build \
cmake --build build
cmake --build build --target module
cmake --build build --target test
cmake --build build --target docs
#cpack --build build --config CPackConfig.cmake
#cpack --build build --config CPackSourceConfig.cmake
cmake --build build --target package
cmake --build build --target package_source

exit 0

#git clean -dfX
[[ ! -e .gitignore-tmp ]]
sort -u .gitignore > .gitignore-tmp
Expand All @@ -25,4 +28,5 @@ git add .
git commit -m "$*"
git push
git clean -dfX
git clean -dfX

0 comments on commit 124db94

Please sign in to comment.