You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
320 B

3 years ago
.POSIX:
.PHONY: clean install
PREFIX=/usr/local
CC=gcc
CFLAGS=-Wall -Wextra -Wshadow -Wpedantic -std=c11 -O0 -g -Wno-unused-parameter
LDFLAGS=$(shell pkg-config --libs --cflags fuse3)
SRC=$(wildcard src/*.c)
tagfs: $(SRC)
$(CC) $(LDFLAGS) $? $(CFLAGS) -o $@
clean:
rm tagfs
install: tagfs
cp $? $(PREFIX)/bin/