From ed565feede23db7397ef845c5a3ff585818aafbb Mon Sep 17 00:00:00 2001 From: "Kurt A. O'Hearn" <ohearnku@cse.msu.edu> Date: Sun, 12 Jun 2016 20:21:54 -0400 Subject: [PATCH] Enable silent builds for custom rules. --- puremd_rc_1003/PG-PuReMD/cuda.am | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/puremd_rc_1003/PG-PuReMD/cuda.am b/puremd_rc_1003/PG-PuReMD/cuda.am index 8d97ccfd..bae249b6 100644 --- a/puremd_rc_1003/PG-PuReMD/cuda.am +++ b/puremd_rc_1003/PG-PuReMD/cuda.am @@ -7,13 +7,12 @@ # these are default values for the maximun register count parameter # passed to nvcc compiler (you might need to change it sometimes; all you need -# is to set is as an environment variable). -MAX_REG_COUNT_SINGLE ?=48 -MAX_REG_COUNT_DOUBLE ?=48 +# is to set it as an environment variable). +MAX_REG_COUNT ?=48 .cu.o: - $(NVCC) $(NVCCFLAGS) -maxrregcount=$(MAX_REG_COUNT_SINGLE) -o $@ -c $< + $(AM_V_GEN)$(NVCC) $(NVCCFLAGS) -maxrregcount=$(MAX_REG_COUNT) -o $@ -c $< .cu.lo: - $(top_srcdir)/am/cudalt.py $@ $(NVCC) $(NVCCFLAGS) -maxrregcount=$(MAX_REG_COUNT_SINGLE) -c $< + $(AM_V_GEN)$(top_srcdir)/am/cudalt.py $@ $(NVCC) $(NVCCFLAGS) -maxrregcount=$(MAX_REG_COUNT) -c $< .cu.c: - cp $< $@ + $(AM_V_GEN)cp $< $@ -- GitLab