summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordavidovski <david@sendula.com>2023-02-11 02:40:24 +0000
committerdavidovski <david@sendula.com>2023-02-11 02:40:24 +0000
commitec05f00c6c0681e10f06f6e16d9f9ea33acb4d8e (patch)
tree999173a016cf59ebd5000aa1957b8d15e0b3f0a9 /Makefile
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..53e4d23
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,6 @@
+CC ?= gcc
+PROG = cursorpen
+FLAGS = -lX11 -lXtst -lXi -lpthread -ludev -levdev
+
+${PROG}: ${PROG}.o
+ ${CC} ${PROG}.c -o ${PROG} ${FLAGS}