Skip to content

Instantly share code, notes, and snippets.

@Themaister
Created May 31, 2012 23:29
Show Gist options
  • Save Themaister/2847171 to your computer and use it in GitHub Desktop.
Save Themaister/2847171 to your computer and use it in GitHub Desktop.
From 22c2150cc23022ca089d5906fbf9989f7b4e5e07 Mon Sep 17 00:00:00 2001
From: Themaister <[email protected]>
Date: Fri, 1 Jun 2012 01:27:27 +0200
Subject: [PATCH] Fix build for Linux.
---
makefile.libretro | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/makefile.libretro b/makefile.libretro
index e894081..014715a 100644
--- a/makefile.libretro
+++ b/makefile.libretro
@@ -48,9 +48,9 @@ include src/$(MAMEOS)/$(MAMEOS).mak
# combine the various definitions to one
CDEFS = $(DEFS) $(COREDEFS) $(CPUDEFS) $(SOUNDDEFS)
-$(EMULATOR): $(OBJC) $(COREOBJS) $(OSOBJS) $(DRVOBJS)
+$(EMULATOR): $(COREOBJS) $(OSOBJS) $(DRVOBJS)
@echo Linking $@...
- @$(CXX) $(LDFLAGS) $(OBJC) $(COREOBJS) $(OSOBJS) $(LIBS) $(DRVOBJS) -o $@
+ @$(CXX) $(LDFLAGS) $(COREOBJS) $(OSOBJS) $(LIBS) $(DRVOBJS) -o $@
$(OBJ)/%.o: src/%.c
@echo Compiling $<...
--
1.7.10.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment