rename CCLD to LINK

This commit is contained in:
Nguyen Anh Quynh
2014-06-03 23:43:53 +07:00
parent 3f1eb192dd
commit 8c0ab867a1
2 changed files with 3 additions and 3 deletions

View File

@ -311,7 +311,7 @@ endif
ifeq ($(CAPSTONE_SHARED),yes)
$(LIBRARY): $(LIBOBJ)
ifeq ($(V),0)
$(call log,CCLD,$(@:$(BLDIR)/%=%))
$(call log,LINK,$(@:$(BLDIR)/%=%))
@$(create-library)
else
$(create-library)

View File

@ -101,11 +101,11 @@ $(TESTDIR)/%$(BIN_EXT): $(OBJDIR)/%.o
@mkdir -p $(@D)
ifeq ($(V),0)
ifeq ($(CAPSTONE_SHARED),yes)
$(call log,CCLD,$(notdir $@))
$(call log,LINK,$(notdir $@))
@$(link-dynamic)
endif
ifeq ($(CAPSTONE_STATIC),yes)
$(call log,CCLD,$(notdir $(call staticname,$@)))
$(call log,LINK,$(notdir $(call staticname,$@)))
@$(link-static)
endif
else