diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-12-17 20:56:01 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-02-07 21:54:55 +0100 |
commit | 9225c3bf291061a25dadbdfc5ec6eab72e86bb5e (patch) | |
tree | fdf7ef2d917258485ab2d4b4bb70a4f845d95525 /ppm/Makefile | |
parent | 177aad9d77cb94cc19a52860c2f3c9add018868e (diff) | |
download | zig-playground-9225c3bf291061a25dadbdfc5ec6eab72e86bb5e.tar.gz zig-playground-9225c3bf291061a25dadbdfc5ec6eab72e86bb5e.zip |
ppm: simple example to generate a ppm image
Diffstat (limited to 'ppm/Makefile')
-rw-r--r-- | ppm/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ppm/Makefile b/ppm/Makefile new file mode 100644 index 0000000..031bfc6 --- /dev/null +++ b/ppm/Makefile @@ -0,0 +1,8 @@ +main: main.zig ppm.zig + zig run main.zig + +show: + nsxiv test.ppm + +clean: + $(RM) test.ppm |