# This is the Makefile for stat

CFLAGS=-O2 -g
CC=gcc
DESTDIR=

all: stat

install:
	install -s -o root -g root -m 755 stat ${DESTDIR}/usr/bin
	install -o root -g root -m 644 stat.1 ${DESTDIR}/usr/man/man1

clean:
	/bin/rm stat *~
