Skip to content

Commit

Permalink
Makefile: vmx.S depends on some header files.
Browse files Browse the repository at this point in the history
  • Loading branch information
asamy committed Jun 2, 2017
1 parent a784854 commit d5b617e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.windows
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ $(OBJ_DIR)/%.o: %.c $(DEP_DIR)/%.d
$(PREPEND)$(CC) -c $(CFLAGS) $(DEPFLAGS) -o $@ $<
@echo " CC $@"

$(OBJ_DIR)/%.o: %.S
$(PREPEND)$(CC) -c $(AFLAGS) -o $@ $<
$(OBJ_DIR)/%.o: %.S $(DEP_DIR)/%.d
$(PREPEND)$(CC) -c $(AFLAGS) $(DEPFLAGS) -o $@ $<
@echo " AS $@"

-include $(DEP)
Expand Down

0 comments on commit d5b617e

Please sign in to comment.