mirror of
https://github.com/amd/blis.git
synced 2026-05-11 09:39:59 +00:00
Minor bugfix to top-level Makefile.
Details: - Applied a patch that allows the top-level Makefile to work on certain systems. The patch simply separates out the source-to-object code generation rules for .c and .S files into two separate rules. Thanks to Devin Matthews for submitting this patch.
This commit is contained in:
10
Makefile
10
Makefile
@@ -467,7 +467,15 @@ else
|
||||
@$(CC) $(call get_cflags_for_obj,$@) -c $< -o $@
|
||||
endif
|
||||
|
||||
$(BASE_OBJ_CONFIG_PATH)/%.o: $(CONFIG_PATH)/%.[cS] $(MK_HEADER_FILES) $(MAKE_DEFS_MK_PATH)
|
||||
$(BASE_OBJ_CONFIG_PATH)/%.o: $(CONFIG_PATH)/%.c $(MK_HEADER_FILES) $(MAKE_DEFS_MK_PATH)
|
||||
ifeq ($(BLIS_ENABLE_VERBOSE_MAKE_OUTPUT),yes)
|
||||
$(CC) $(call get_cflags_for_obj,$@) -c $< -o $@
|
||||
else
|
||||
@echo "Compiling $<" $(call get_ctext_for_obj,$@)
|
||||
@$(CC) $(call get_cflags_for_obj,$@) -c $< -o $@
|
||||
endif
|
||||
|
||||
$(BASE_OBJ_CONFIG_PATH)/%.o: $(CONFIG_PATH)/%.S $(MK_HEADER_FILES) $(MAKE_DEFS_MK_PATH)
|
||||
ifeq ($(BLIS_ENABLE_VERBOSE_MAKE_OUTPUT),yes)
|
||||
$(CC) $(call get_cflags_for_obj,$@) -c $< -o $@
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user