diff options
author | bde <bde@FreeBSD.org> | 2000-01-15 19:40:08 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2000-01-15 19:40:08 +0000 |
commit | 14487c9009d22779861e0407d8c028024af00311 (patch) | |
tree | d046d872844a7fc14daa461ca444555fa0e411cd | |
parent | ce4d3d68f935130f86228d9651cad1c02157e14f (diff) | |
download | FreeBSD-src-14487c9009d22779861e0407d8c028024af00311.zip FreeBSD-src-14487c9009d22779861e0407d8c028024af00311.tar.gz |
Don't clobber the sources when plain "make" is run. Just print a message
as in all other Makefiles that create syscall files.
Fixed some style bugs.
-rw-r--r-- | sys/alpha/osf1/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/alpha/osf1/Makefile b/sys/alpha/osf1/Makefile index a161390..8740658 100644 --- a/sys/alpha/osf1/Makefile +++ b/sys/alpha/osf1/Makefile @@ -1,7 +1,9 @@ # $FreeBSD$ -# Makefile for syscall tables -all: osf1_sysent.c +# Makefile for syscall tables. + +all: + @echo "make osf1_sysent.c only" osf1_sysent.c osf1_syscall.h osf1_proto.h: ../../kern/makesyscalls.sh \ syscalls.master syscalls.conf |