summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2020-04-16 22:37:01 -0700
committerMike Pavone <pavone@retrodev.com>2020-04-16 22:37:01 -0700
commit4d6a594f8ad4a209a587278a245edb3db0566c39 (patch)
treea3480f0e3b846dda823909dc3a3a49b192b70354 /Makefile
parent0a95286145a4e48bd6ef3ed605727b01cc26c9f6 (diff)
Update libretro target to use render_audio shared audio code
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2a21e79..64fe92e 100644
--- a/Makefile
+++ b/Makefile
@@ -194,10 +194,10 @@ TRANSOBJS+= gen_x86.o backend_x86.o
endif
endif
endif
-AUDIOOBJS=ym2612.o psg.o wave.o vgm.o
+AUDIOOBJS=ym2612.o psg.o wave.o vgm.o render_audio.o
CONFIGOBJS=config.o tern.o util.o paths.o
NUKLEAROBJS=$(FONT) nuklear_ui/blastem_nuklear.o nuklear_ui/sfnt.o
-RENDEROBJS=ppm.o controller_info.o render_audio.o
+RENDEROBJS=ppm.o controller_info.o
ifdef USE_FBDEV
RENDEROBJS+= render_fbdev.o
else