head     1.2;
branch   ;
access   ;
symbols  ;
locks    bin:1.2;
comment  @@;


1.2
date     91.06.13.14.05.11;  author bin;  state Exp;
branches ;
next     1.1;

1.1
date     91.06.07.18.22.09;  author bin;  state Exp;
branches ;
next     ;


desc
@init ver prov by piggy for v3.2
@


1.2
log
@prov by piggy
@
text
@# Makefile for checkperms, permissions checking interpreter
# part of uucheck the uucp sanity checker.
#
# Destination directory for installing executable files
BIN=./install/bin/
# Destination directory for installing data files
# BTW if LIB= anything other than /usr/lib/uucheck/, you will have to edit
# uucheck by hand.
LIB=./install/usr/lib/uucheck/

SUBPROGS=checkperms/checkperms uucheckname/uucheckname uuchecklock/uuchecklock
#
uucheck:	$(SUBPROGS)
	touch $@@

checkperms/checkperms:
	(cd checkperms; make)

uucheckname/uucheckname:
	(cd uucheckname; make)

uuchecklock/uuchecklock:
	(cd uuchecklock; make)

install: uucheck
	(cd checkperms; make install)
	(cd uucheckname; make install)
	(cd uuchecklock; make install)
	cp -d uucheck $(BIN)
	chown bin $(BIN)/uucheck
	chgrp bin $(BIN)/uucheck

clean:
	(cd checkperms; make clean)
	(cd uucheckname; make clean)
	(cd uuchecklock; make clean)
	rm -f *.o core
@


1.1
log
@Initial revision
@
text
@d5 1
a5 1
BIN=/bin/
d9 1
a9 1
LIB=/usr/lib/uucheck/
d11 1
a11 1
SUBPROGS=checkperms/checkperms uucheckname/uucheckname
d22 3
d28 4
a31 1
	cp uucheck $(BIN)
d36 1
@
