This commit is contained in:
jackcmay 2018-10-31 10:12:17 -07:00 committed by GitHub
parent b74e085538
commit aca2f9666d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -90,10 +90,10 @@ $(OUT_DIR)/%.bc: $(SRC_DIR)/%.c
$(OUT_DIR)/%.o: $(OUT_DIR)/%.bc
@echo "[llc] $@ ($<)"
$(_@)$(LLC) $(LLC_FLAGS) -o $@ $<
-include $(wildcard $(OUT_DIR)/*.d)
-include $(wildcard $(OUT_DIR)/%.d)
PROGRAM_NAMES := $(notdir $(basename $(wildcard src/*.c)))
PROGRAM_NAMES := $(notdir $(basename $(wildcard $(SRC_DIR)/*.c)))
define \n