diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-11-30 07:52:07 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-11-30 07:52:07 +0000 |
commit | 937790df765970d1200464f574f741c75aac95d2 (patch) | |
tree | ec2df19e2b6e52d86377bb3b1bea4e133910b876 /sys/arch/vax | |
parent | d85b7d1f0d678149f18cb897534f3c5f62790327 (diff) |
Define NORMAL_C_NOP everywhere.
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/conf/Makefile.vax | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/vax/conf/Makefile.vax b/sys/arch/vax/conf/Makefile.vax index 5c934e6cfa5..e50b8d5c1a1 100644 --- a/sys/arch/vax/conf/Makefile.vax +++ b/sys/arch/vax/conf/Makefile.vax @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.vax,v 1.30 2007/11/25 18:25:29 deraadt Exp $ +# $OpenBSD: Makefile.vax,v 1.31 2007/11/30 07:52:06 miod Exp $ # $NetBSD: Makefile.vax,v 1.49 1999/07/26 05:20:49 cgd Exp $ # Makefile for OpenBSD/vax @@ -84,6 +84,7 @@ HOSTED_CFLAGS= ${CFLAGS} # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file). +NORMAL_C_NOP= ${CC} ${CFLAGS} ${CPPFLAGS} -c $< NORMAL_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $< NOPROF_C= ${CC} ${CFLAGS} ${CPPFLAGS} -c $< NORMAL_S= ${CC} ${AFLAGS} ${CPPFLAGS} -c $< |