summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 52ab17ebaac093b8069d6053b707d507a0a6464a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CFLAGS := -O2 -Wall
EXE := fsverity
DESTDIR := /usr/local

all:$(EXE)

clean:
	rm -f $(EXE)

install:all
	install -Dm755 -t $(DESTDIR)/bin $(EXE) fsveritysetup \
		mkfsverity.sh full-run-fsverity.sh

.PHONY: all clean