aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortwinaphex2015-03-03 09:39:59 +0100
committertwinaphex2015-03-03 09:39:59 +0100
commit8e1679b5b7a77192863b244e665b9ba324b5d79a (patch)
treece6819715ddd0b3999b745a2aca308cf474baca7 /Makefile
parentc53a5d06bc0e6a6874312a23b38447cde2f87b14 (diff)
downloadsnesemu-8e1679b5b7a77192863b244e665b9ba324b5d79a.tar.gz
snesemu-8e1679b5b7a77192863b244e665b9ba324b5d79a.tar.bz2
snesemu-8e1679b5b7a77192863b244e665b9ba324b5d79a.zip
Use C linker
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ec0f7ec..dabbb28 100644
--- a/Makefile
+++ b/Makefile
@@ -206,7 +206,7 @@ $(TARGET): $(OBJECTS)
ifeq ($(STATIC_LINKING), 1)
$(AR) rcs $@ $(OBJECTS)
else
- $(CXX) -o $@ $^ $(LDFLAGS)
+ $(CC) -o $@ $^ $(LDFLAGS)
endif
%.o: %.cpp