diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-04-16 12:38:27 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-04-16 12:38:27 +0000 |
commit | 76eea6377e4722f4716b38932aa1790809c56e4f (patch) | |
tree | 727fb6d294e4aeac7a0ef4457a8f7185a7f3382c /sys/arch/hp300/stand/libkern | |
parent | eaabcf9e97540b2a032c00aabf404a950b411f0d (diff) |
Add a proper version number ala other ports, and clean up various parts of
the Makefiles. Lots more to do...
Diffstat (limited to 'sys/arch/hp300/stand/libkern')
-rw-r--r-- | sys/arch/hp300/stand/libkern/Makefile.inc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/arch/hp300/stand/libkern/Makefile.inc b/sys/arch/hp300/stand/libkern/Makefile.inc index 4dc628fd6a1..dc36d1b2148 100644 --- a/sys/arch/hp300/stand/libkern/Makefile.inc +++ b/sys/arch/hp300/stand/libkern/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.1 1997/01/17 08:33:05 downsj Exp $ +# $OpenBSD: Makefile.inc,v 1.2 1997/04/16 12:38:25 downsj Exp $ # NOTE: $S must correspond to the top of the 'sys' tree @@ -20,4 +20,12 @@ clean:: .NOTMAIN __always_make_kern_lib @echo cleaning the kernel library objects @(cd $(KERN_DIR) ; make clean) +cleandir: .NOTMAIN __always_make_kern_lib + @echo cleandiring the kernel library objects + @(cd $(KERN_DIR) ; make cleandir) + +depend:: .NOTMAIN __always_make_kern_lib + @echo depending the kernel library objects + @(cd $(KERN_DIR) ; make depend) + __always_make_kern_lib: .NOTMAIN |