summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-01-03 21:49:22 +0100
committerxengineering <me@xengineering.eu>2023-01-06 14:23:55 +0100
commit10a48fdff83668229f18413c7b30827c2596108d (patch)
tree2ed4d594a6ec658e4ad909e4d3472895c4224f32 /Makefile
parentc1ab3b92c596694b760ca6d9a86ef6b50e5564e3 (diff)
downloadphonelock-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--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f855e96..e9a7956 100644
--- a/Makefile
+++ b/Makefile
@@ -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