From 0f960c843721066ce5d73eb9d8716d47c05f375c Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 24 Aug 2021 20:02:06 +0200 Subject: Implemented program that reads X PRIMARY selection Hopefully, this can act as a base for the FUSE. --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cfffd49 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +CFLAGS += -Wall -Wextra -Wpedantic +CFLAGS += `pkg-config --cflags xcb xcb-util xcb-icccm` +LDLIBS += `pkg-config --libs xcb xcb-util xcb-icccm` + +all: clipfs + +clipfs: + +clean: + rm -f *.o clipfs + +.PHONY: all clean -- cgit v1.1