mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Fix build on OSX
This commit is contained in:
parent
98c6a6d5cb
commit
7b83547d61
2 changed files with 3 additions and 4 deletions
2
makefile
2
makefile
|
@ -949,7 +949,7 @@ ifeq ($(TARGETOS),emscripten)
|
|||
# Emscripten's linker seems to be stricter about the ordering of files
|
||||
$(LD) $(LDFLAGS) $(LDFLAGSEMULATOR) $(VERSIONOBJ) -Wl,--start-group $(EMULATOROBJ) -Wl,--end-group $(LIBS) -o $@
|
||||
else
|
||||
$(LD) $(LDFLAGS) $(LDFLAGSEMULATOR) $^ $(LIBS) -o $@
|
||||
$(LD) $(LDFLAGS) $(LDFLAGSEMULATOR) $(VERSIONOBJ) $(EMULATOROBJ) $(LIBS) -o $@
|
||||
endif
|
||||
ifeq ($(TARGETOS),win32)
|
||||
ifdef SYMBOLS
|
||||
|
|
|
@ -67,12 +67,11 @@ BUSES += MIDI
|
|||
#-------------------------------------------------
|
||||
|
||||
DRVLIBS = \
|
||||
$(EMUDRIVERS)/emudummy.o \
|
||||
$(LDPOBJ)/ldplayer.o \
|
||||
$(EMUDRIVERS)/emudummy.o
|
||||
|
||||
|
||||
#-------------------------------------------------
|
||||
# layout dependencies
|
||||
#-------------------------------------------------
|
||||
|
||||
$(LDPOBJ)/ldplayer.o: $(LAYOUT)/pr8210.lh \
|
||||
$(LDPOBJ)/ldplayer.o: $(LAYOUT)/pr8210.lh
|
||||
|
|
Loading…
Reference in a new issue