summaryrefslogtreecommitdiff
path: root/Makefile
blob: 163233af27b0b4974460df26f8c6556cd02b8cd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS += -Wall -Wextra -Wpedantic
CFLAGS += -DFUSE_USE_VERSION=31
CFLAGS += `pkg-config --cflags fuse3 xcb xcb-util`
LDLIBS += `pkg-config --libs fuse3 xcb xcb-util`

all: clipfs

clipfs:

clean:
	rm -f *.o clipfs

.PHONY: all clean