File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -11,16 +11,20 @@ LDLIBS = -lm
11
11
# ----- Verbosity control -----------------------------------------------------
12
12
13
13
CC_normal := $(CC )
14
+ CP_normal := cp
14
15
15
16
CC_quiet = @echo " CC " $@ && $(CC_normal )
16
17
GEN_quiet = @echo " GENERATE " $@ &&
18
+ CP_quiet = @echo " CP " $@ && $(CP_normal )
17
19
18
20
ifeq ($(V ) ,1)
19
21
CC = $(CC_normal )
20
22
GEN =
23
+ CP = $(CP_normal )
21
24
else
22
25
CC = $(CC_quiet )
23
26
GEN = $(GEN_quiet )
27
+ CP = $(CP_quiet )
24
28
endif
25
29
26
30
# ----- Rules -----------------------------------------------------------------
@@ -52,7 +56,7 @@ ptest: $(OBJS)
52
56
53
57
libfpvm.a :
54
58
$(MAKE ) -C $(LIBFPVM_X86 )
55
- cp $(LIBFPVM_X86 ) /$@ .
59
+ $( CP ) $(LIBFPVM_X86 ) /$@ .
56
60
57
61
# ----- Dependencies ----------------------------------------------------------
58
62
You can’t perform that action at this time.
0 commit comments