diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1994-05-27 12:42:53 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1994-05-27 12:42:53 +0000 |
commit | d43599f73ba5858e573c7ad8b284f6a0808c5c93 (patch) | |
tree | 3531dab11a2b33123ee98a3d0e2b4477322c0af2 /Makefile | |
parent | 7d07d2de2f52d4e2eba169e5563165309a795128 (diff) | |
download | FreeBSD-src-d43599f73ba5858e573c7ad8b284f6a0808c5c93.zip FreeBSD-src-d43599f73ba5858e573c7ad8b284f6a0808c5c93.tar.gz |
BSD 4.4 Lite Top Level Sources
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c73672e --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +# @(#)Makefile 8.1 (Berkeley) 6/19/93 + +SUBDIR= bin contrib games include kerberosIV lib libexec old sbin \ + share usr.bin usr.sbin + +afterinstall: + (cd share/man && make makedb) + +build: + (cd include && make install) + make cleandir + (cd lib && make depend && make && make install) + (cd kerberosIV && make depend && make && make install) + make depend && make && make install + +.include <bsd.subdir.mk> |