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/alpha | |
parent | d85b7d1f0d678149f18cb897534f3c5f62790327 (diff) |
Define NORMAL_C_NOP everywhere.
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/conf/Makefile.alpha | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/alpha/conf/Makefile.alpha b/sys/arch/alpha/conf/Makefile.alpha index 6a36714be28..e87f5bb4e65 100644 --- a/sys/arch/alpha/conf/Makefile.alpha +++ b/sys/arch/alpha/conf/Makefile.alpha @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.alpha,v 1.41 2007/11/25 18:25:25 deraadt Exp $ +# $OpenBSD: Makefile.alpha,v 1.42 2007/11/30 07:52:02 miod Exp $ # $NetBSD: Makefile.alpha,v 1.27 1996/12/01 06:12:25 jonathan Exp $ # Makefile for OpenBSD @@ -53,6 +53,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 $< NORMAL_S= ${CC} -xassembler-with-cpp ${AFLAGS} ${CPPFLAGS} -c $< |