Skip to content

Commit e90101d

Browse files
committedJan 13, 2012
ptest/Makefile: added "silent" copy operation
1 parent bed7bf7 commit e90101d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/compiler/ptest/Makefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,20 @@ LDLIBS = -lm
1111
# ----- Verbosity control -----------------------------------------------------
1212

1313
CC_normal := $(CC)
14+
CP_normal := cp
1415

1516
CC_quiet = @echo " CC " $@ && $(CC_normal)
1617
GEN_quiet = @echo " GENERATE " $@ &&
18+
CP_quiet = @echo " CP " $@ && $(CP_normal)
1719

1820
ifeq ($(V),1)
1921
CC = $(CC_normal)
2022
GEN =
23+
CP = $(CP_normal)
2124
else
2225
CC = $(CC_quiet)
2326
GEN = $(GEN_quiet)
27+
CP = $(CP_quiet)
2428
endif
2529

2630
# ----- Rules -----------------------------------------------------------------
@@ -52,7 +56,7 @@ ptest: $(OBJS)
5256

5357
libfpvm.a:
5458
$(MAKE) -C $(LIBFPVM_X86)
55-
cp $(LIBFPVM_X86)/$@ .
59+
$(CP) $(LIBFPVM_X86)/$@ .
5660

5761
# ----- Dependencies ----------------------------------------------------------
5862

0 commit comments

Comments
 (0)
Please sign in to comment.