# This is the Makefile for statfs

CFLAGS=-O2 -g
CC=gcc
DESTDIR=

all: statfs

install:
	install -s -o root -g root -m 755 statfs /usr/local/bin
	install -o root -g root -m 644 statfs.1 /usr/local/man/man1

install-deb:
	install -s -o root -g root -m 755 statfs ${DESTDIR}/usr/bin

clean:
	/bin/rm -f statfs *~
