|
|
1.1 root 1: # Makefile for checkperms, permissions checking interpreter
2: # part of uucheck the uucp sanity checker.
3: #
4: # Destination directory for installing executable files
5: DESTDIR=/interim/bin/
6: BIN=./install/bin/
7: # Destination directory for installing data files
8: # BTW if LIB= anything other than /usr/lib/uucheck/, you will have to edit
9: # uucheck by hand.
10: LIB=./install/usr/lib/uucheck/
11:
12: SUBPROGS=uucheck checkperms/checkperms uucheckname/uucheckname uuchecklock/uuchecklock
13: #
14: uucheck: $(SUBPROGS)
15: cp uucheck $(DESTDIR)$@
16: su root chmog 511 bin bin $(DESTDIR)$@
17:
18: checkperms/checkperms:
19: (cd checkperms; make)
20:
21: uucheckname/uucheckname:
22: (cd uucheckname; make)
23:
24: uuchecklock/uuchecklock:
25: (cd uuchecklock; make)
26:
27: install: uucheck
28: (cd checkperms; make install)
29: (cd uucheckname; make install)
30: (cd uuchecklock; make install)
31: cp -d uucheck $(BIN)
32: chown bin $(BIN)/uucheck
33: chgrp bin $(BIN)/uucheck
34:
35: clean:
36: (cd checkperms; make clean)
37: (cd uucheckname; make clean)
38: (cd uuchecklock; make clean)
39: rm -f *.o core
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.