diff options
author | xengineering <me@xengineering.eu> | 2023-01-03 21:49:22 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-01-06 14:23:55 +0100 |
commit | 10a48fdff83668229f18413c7b30827c2596108d (patch) | |
tree | 2ed4d594a6ec658e4ad909e4d3472895c4224f32 /Makefile | |
parent | c1ab3b92c596694b760ca6d9a86ef6b50e5564e3 (diff) | |
download | phonelock-cairo.tar phonelock-cairo.tar.zst phonelock-cairo.zip |
Add minimal cairo samplecairo
cairo [1] should be used to implement phonelock. This is just some
example code to get started.
[1]: https://www.cairographics.org/
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ all: build/phonelock build/phonelock: main.c mkdir -p build - gcc -Wall -o build/phonelock main.c + gcc -o build/phonelock -Wall `pkg-config --cflags --libs cairo` main.c clean: rm -rf build |