initial commit
This commit is contained in:
commit
4e9f69da92
8 changed files with 53 additions and 0 deletions
18
justfile
Normal file
18
justfile
Normal file
|
@ -0,0 +1,18 @@
|
|||
name := "freling_netatmo_algo"
|
||||
exe := "./packing"
|
||||
build_sh := "build.sh"
|
||||
|
||||
build:
|
||||
tup
|
||||
|
||||
run: build
|
||||
{{exe}}
|
||||
|
||||
generate-build:
|
||||
tup generate {{build_sh}}
|
||||
|
||||
debug: build
|
||||
lldb {{exe}}
|
||||
|
||||
archive: generate-build
|
||||
git archive --add-file={{build_sh}} --output={{name}}.zip --prefix={{name}}/ HEAD
|
Loading…
Add table
Add a link
Reference in a new issue