Merge pull request #4 from drizzt/patch-1
Fix bulding of .s and .S files
This commit is contained in:
commit
7ce9ec1a92
1 changed files with 2 additions and 2 deletions
|
@ -279,11 +279,11 @@ $(BUILD_DIR)/%.o: %.cpp
|
|||
|
||||
$(BUILD_DIR)/%.o: %.s
|
||||
@echo $@
|
||||
@$(CC) -c $(CC_FLAGS) -MMD -MP -MF -x assembler-with-cpp $(BUILD_DIR)/$*.d $< -o $@
|
||||
@$(CC) -c $(CC_FLAGS) -MMD -MP -MF $(BUILD_DIR)/$*.d -x assembler-with-cpp $< -o $@
|
||||
|
||||
$(BUILD_DIR)/%.o: %.S
|
||||
@echo $@
|
||||
@$(CC) -c $(CC_FLAGS) -MMD -MP -MF -x assembler-with-cpp $(BUILD_DIR)/$*.d $< -o $@
|
||||
@$(CC) -c $(CC_FLAGS) -MMD -MP -MF $(BUILD_DIR)/$*.d -x assembler-with-cpp $< -o $@
|
||||
|
||||
$(BUILD_DIR)/%.bin.o: $(BUILD_DIR)/%.bin.c
|
||||
@echo $@
|
||||
|
|
Loading…
Reference in a new issue