###############################################################################
#
# File:         Makefile
# RCS:          $Header: $
# Description:  Makefile for asroot distribution
# Author:       Carl Edman
# Created:      Fri May 14 09:08:24 1993
# Modified:     Fri May 14 09:10:29 1993 (Carl Edman) cedman@capitalist
# Language:     Text
# Package:      N/A
# Status:       Distribution
#
# (C) Copyright 1993, but otherwise this file is perfect freeware.
#
###############################################################################

CFLAGS = -pipe -O2 -Wall
LDFLAGS = -s

all: asroot

asroot: asroot.o
	cc $(LDFLAGS) -o asroot asroot.o

clean:
	-/bin/rm *.o

spotless:
	-/bin/rm *.o asroot

install: all
	install -c -o root -g wheel -m 4775 asroot /usr/local/bin
	install -c -o root -g wheel -m 664 asroot.1 /usr/local/man/man1
