File: Makefile

package info (click to toggle)
fuse3 3.17.2-3
  • links: PTS
  • area: main
  • in suites: trixie
  • size: 37,592 kB
  • sloc: ansic: 22,937; perl: 6,044; cpp: 3,853; python: 1,128; sh: 408; 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)