File: Makefile

package info (click to toggle)
fuse3 3.18.1-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 58,496 kB
  • sloc: ansic: 25,055; perl: 6,044; cpp: 3,960; python: 1,201; sh: 416; javascript: 313; makefile: 59
file content (17 lines) | stat: -rw-r--r-- 453 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CFLAGS := -Wall $(shell pkg-config fuse3 --cflags)
LDFLAGS := $(shell pkg-config fuse3 --libs)

targets = cuse cuse_client hello hello_ll \
          invalidate_path ioctl ioctl_client \
          notify_inval_entry notify_inval_inode notify_store_retrieve \
          null passthrough passthrough_fh passthrough_ll \
          poll poll_client printcap

%: %.c
	$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)

all: $(targets)

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