CFLAGS := -Wall $(shell pkg-config fuse --cflags)
LDFLAGS := $(shell pkg-config fuse --libs)

targets = cfs011mount

all: $(targets)

clean:
	rm -f *.o
	rm -f $(targets)
