summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..4030ff2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+CC = clang
+CFLAGS = $(shell pkg-config --cflags gio-2.0 gio-unix-2.0)
+LIBS = $(shell pkg-config --libs gio-2.0 gio-unix-2.0)
+PREFIX = /usr/local
+
+xdgctl: main.c
+ $(CC) $(CFLAGS) -o xdgctl main.c $(LIBS)
+
+format:
+ clang-format -i main.c mimetypes.h
+
+clean:
+ rm -f xdgctl
+
+install:
+ install -Dm755 xdgctl $(PREFIX)/bin/xdgctl
+
+.PHONY: xdgctl format clean install