diff options
author | twinaphex | 2018-04-20 19:25:32 +0200 |
---|---|---|
committer | twinaphex | 2018-04-20 19:25:32 +0200 |
commit | 1599e4b8e3594f141cc2187ff538dc720d502983 (patch) | |
tree | b4c23d37995927c40346224f5a89020688a65c98 | |
parent | 83671374794a8eeef488ebbd05b5acd50153bab1 (diff) | |
download | snes9x2002-1599e4b8e3594f141cc2187ff538dc720d502983.tar.gz snes9x2002-1599e4b8e3594f141cc2187ff538dc720d502983.tar.bz2 snes9x2002-1599e4b8e3594f141cc2187ff538dc720d502983.zip |
Use CC for assembly files
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -198,7 +198,7 @@ endif $(CC) $(CFLAGS) -c -o $@ $< %.o: %.S - $(CXX) $(CFLAGS) -Wa,-I./src/ -c -o $@ $< + $(CC) $(CFLAGS) -Wa,-I./src/ -c -o $@ $< clean: rm -f $(OBJS) $(TARGET) |