summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2019-05-17 08:43:30 -0700
committerMichael Pavone <pavone@retrodev.com>2019-05-17 08:43:30 -0700
commit1d8f8c5b5d3a5ea7b20116b690aa38468446df90 (patch)
tree87dc3612c543fd5e73c329f245f8dc483b66092a /Makefile
parent8ad096f5309ac7c3876b22b6d048f229cdf5677d (diff)
Split generic part of audio code into a separate file so it can be used in other targets besides SDL
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5ef0f62..b38b31b 100644
--- a/Makefile
+++ b/Makefile
@@ -197,7 +197,7 @@ endif
AUDIOOBJS=ym2612.o psg.o wave.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
+RENDEROBJS=ppm.o controller_info.o render_audio.o
ifdef USE_FBDEV
RENDEROBJS+= render_fbdev.o
else