blob: 2041112a7afc16e19b03f42a7af2367f19f0ec8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
## compiles against the *system* version of libgfapi,
## but not the libgfapi for the testcases
CFLAGS = -Wall -g $(shell pkg-config --cflags glusterfs-api)
LDFLAGS = $(shell pkg-config --libs glusterfs-api)
BINARIES = upcall-cache-invalidate
%: %.c
all: $(BINARIES)
clean:
-$(RM) $(BINARIES)
|