diff options
| author | Akshay Nair <phenax5@gmail.com> | 2026-06-02 11:51:17 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2026-06-02 11:51:17 +0530 |
| commit | 4ccc095ed2efeda97805bdfb9473f62ed46220b7 (patch) | |
| tree | d159a226caf7619d56252c58f354189926ef51c2 /justfile | |
| parent | 6cb596cafa71b8c8d3521deb0521c0969942fb3a (diff) | |
| download | sqlite-creative-coding-4ccc095ed2efeda97805bdfb9473f62ed46220b7.tar.gz sqlite-creative-coding-4ccc095ed2efeda97805bdfb9473f62ed46220b7.zip | |
Show pixels from db
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,6 +1,6 @@ set export -CC := "gcc" +CC := "cc" CFLAGS := f"-std=c11 -O2 \ -Wall -Wextra -Wshadow -Wformat=2 -fsanitize=address,undefined \ {{shell('pkg-config --cflags --libs sqlite3')}}" @@ -19,3 +19,9 @@ run: build format: find src/ -iname '*.h' -o -iname '*.c' | xargs clang-format -i +setup-db: + rm fun.db + sqlite3 fun.db < setup.sql + +image: + just run | magick display -resize 500% - |
