summaryrefslogtreecommitdiff
path: root/Makefile
blob: b2650afe42a1e189f205909e79578df9740485d1 (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 xcb-icccm`
LDLIBS += `pkg-config --libs fuse3 xcb xcb-util xcb-icccm`

all: clipfs

clipfs:

clean:
	rm -f *.o clipfs

.PHONY: all clean