Skip to content

Commit

Permalink
Merge pull request #14 from eblanton/as-provide-cflags
Browse files Browse the repository at this point in the history
Allow platform configurations to define compiler flags for AS rules.
  • Loading branch information
brylow committed Nov 10, 2017
2 parents 72ad25a + 49093f4 commit 5ed31a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compile/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ objects: $(COMP_OBJ)

%.o: %.S
@echo -e "\tAssembling" $@
$(CC) $(DEPFLAGS) $(ASFLAGS) -g -o $@ $<
$(CC) $(DEPFLAGS) $(ASFLAGS) $(ASCFLAGS) -g -o $@ $<

clean:
@echo -e "\tCleaning all objects"
Expand Down

0 comments on commit 5ed31a5

Please sign in to comment.