1 # $Id: Makefile,v 1.15 1994/02/07 05:08:57 cgd Exp $ 2 3 # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW 4 5 SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share games 6 SUBDIR+= gnu 7 8 SUBDIR+= sys 9 10 .if exists(regress) 11 .ifmake !(install) 12 SUBDIR+= regress 13 .endif 14 15 regression-tests: 16 @echo Running regression tests... 17 @( cd regress; make regress ) 18 .endif 19 20 afterinstall: 21 (cd share/man && make makedb) 22 23 build: 24 (cd install && make install) 25 make cleandir 26 (cd lib && make depend && make && make install) 27 (cd gnu/lib && make depend && make && make install) 28 .if exists(kerberosIV) 29 (cd kerberosIV && make depend && make && make install) 30 .endif 31 make depend && make && make install 32 33 .include <bsd.subdir.mk> 34