diff options
author | twinaphex | 2015-03-03 09:39:59 +0100 |
---|---|---|
committer | twinaphex | 2015-03-03 09:39:59 +0100 |
commit | 8e1679b5b7a77192863b244e665b9ba324b5d79a (patch) | |
tree | ce6819715ddd0b3999b745a2aca308cf474baca7 /Makefile | |
parent | c53a5d06bc0e6a6874312a23b38447cde2f87b14 (diff) | |
download | snes9x2005-8e1679b5b7a77192863b244e665b9ba324b5d79a.tar.gz snes9x2005-8e1679b5b7a77192863b244e665b9ba324b5d79a.tar.bz2 snes9x2005-8e1679b5b7a77192863b244e665b9ba324b5d79a.zip |
Use C linker
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -206,7 +206,7 @@ $(TARGET): $(OBJECTS) ifeq ($(STATIC_LINKING), 1) $(AR) rcs $@ $(OBJECTS) else - $(CXX) -o $@ $^ $(LDFLAGS) + $(CC) -o $@ $^ $(LDFLAGS) endif %.o: %.cpp |