diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-09-01 05:20:55 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-09-01 05:20:55 +0000 |
commit | fc34a0ffc245dbafebcc22915e63b418dae13c3a (patch) | |
tree | 8ed1ba0fb87cb2b872446fbb690ea47dfd800c93 /sys | |
parent | 9561d0e80262039c0b8552b31082c3ac32ebc696 (diff) |
Make this consistent with sys/kern/Makefile: require the 'syscalls' target
Diffstat (limited to 'sys')
-rw-r--r-- | sys/compat/linux/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/compat/linux/Makefile b/sys/compat/linux/Makefile index e54941ea95b..53781d8fef6 100644 --- a/sys/compat/linux/Makefile +++ b/sys/compat/linux/Makefile @@ -1,8 +1,13 @@ -# $OpenBSD: Makefile,v 1.3 2001/08/26 03:23:44 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 2014/09/01 05:20:54 guenther Exp $ # $NetBSD: Makefile,v 1.1 1995/02/28 23:26:21 fvdl Exp $ DEP= syscalls.conf syscalls.master ../../kern/makesyscalls.sh OBJS= linux_sysent.c linux_syscalls.c linux_syscall.h linux_syscallargs.h +all: + @echo "Doing nothing. Did you want make syscalls?" + +syscalls: linux_sysent.c + ${OBJS}: ${DEP} sh ../../kern/makesyscalls.sh syscalls.conf syscalls.master |