diff options
author | Aki <please@ignore.pl> | 2021-08-24 20:02:06 +0200 |
---|---|---|
committer | Aki <please@ignore.pl> | 2021-08-24 20:02:06 +0200 |
commit | 0f960c843721066ce5d73eb9d8716d47c05f375c (patch) | |
tree | 282ef0ce82ae5406390916dafb9bf56053ac6316 /Makefile | |
download | clipfs-0f960c843721066ce5d73eb9d8716d47c05f375c.zip clipfs-0f960c843721066ce5d73eb9d8716d47c05f375c.tar.gz clipfs-0f960c843721066ce5d73eb9d8716d47c05f375c.tar.bz2 |
Implemented program that reads X PRIMARY selection
Hopefully, this can act as a base for the FUSE.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
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 |