#	@(#)makefile	3.4	3/23/87
#

LIBS	= -lshadow

all: pcnfsd

pcnfsd: pcnfsd.c valid.c
	cc -O6 -o pcnfsd -DLINUX -DSHADOWPWD pcnfsd.c valid.c $(LIBS)
	strip pcnfsd

install:
	cp pcnfsd $(BINROOTDIR)/usr/sbin

clean:
	rm -f *.o pcnfsd core
