diff --git a/Quake/Makefile.w32 b/Quake/Makefile.w32 index c8ee1778..d83278d4 100644 --- a/Quake/Makefile.w32 +++ b/Quake/Makefile.w32 @@ -107,11 +107,11 @@ $(error Invalid MP3LIB setting) endif endif ifeq ($(MP3LIB),mad) -mp3_obj=snd_mp3 +mp3_obj=snd_mp3.o snd_mp3tag.o lib_mp3dec=-lmad endif ifeq ($(MP3LIB),mpg123) -mp3_obj=snd_mpg123 +mp3_obj=snd_mpg123.o snd_mp3tag.o lib_mp3dec=-lmpg123 endif ifeq ($(VORBISLIB),vorbis) @@ -204,8 +204,7 @@ MUSIC_OBJS:= bgmusic.o \ snd_wave.o \ snd_vorbis.o \ snd_opus.o \ - $(mp3_obj).o \ - snd_mp3tag.o \ + $(mp3_obj) \ snd_mikmod.o \ snd_xmp.o \ snd_umx.o diff --git a/Quake/Makefile.w64 b/Quake/Makefile.w64 index 1a9dad5a..b5e7b735 100644 --- a/Quake/Makefile.w64 +++ b/Quake/Makefile.w64 @@ -105,11 +105,11 @@ $(error Invalid MP3LIB setting) endif endif ifeq ($(MP3LIB),mad) -mp3_obj=snd_mp3.o +mp3_obj=snd_mp3.o snd_mp3tag.o lib_mp3dec=-lmad endif ifeq ($(MP3LIB),mpg123) -mp3_obj=snd_mpg123.o +mp3_obj=snd_mpg123.o snd_mp3tag.o lib_mp3dec=-lmpg123 endif ifeq ($(VORBISLIB),vorbis)