summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortwinaphex2018-04-20 19:25:32 +0200
committertwinaphex2018-04-20 19:25:32 +0200
commit1599e4b8e3594f141cc2187ff538dc720d502983 (patch)
treeb4c23d37995927c40346224f5a89020688a65c98 /Makefile
parent83671374794a8eeef488ebbd05b5acd50153bab1 (diff)
downloadsnes9x2002-1599e4b8e3594f141cc2187ff538dc720d502983.tar.gz
snes9x2002-1599e4b8e3594f141cc2187ff538dc720d502983.tar.bz2
snes9x2002-1599e4b8e3594f141cc2187ff538dc720d502983.zip
Use CC for assembly files
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b35f3cd..57fc2cf 100644
--- a/Makefile
+++ b/Makefile
@@ -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)