Silence build output

Do not pass CPPFLAGS twice
This commit is contained in:
Carsten Teibes
2020-05-16 02:58:04 +02:00
parent e929326a3b
commit 6f8e67656e
31 changed files with 125 additions and 126 deletions

View File

@@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@
CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/user -I$(top_srcdir)/src/debug
CFLAGS = @PSPSDK_CFLAGS@
CCASFLAGS = $(CFLAGS) $(CPPFLAGS)
CCASFLAGS = $(CFLAGS)
AUDIO_OBJS = sceAudio_0000.o sceAudio_0001.o sceAudio_0002.o sceAudio_0003.o sceAudio_0004.o sceAudio_0005.o sceAudio_0006.o sceAudio_0007.o sceAudio_0008.o sceAudio_0009.o sceAudio_0010.o sceAudio_0011.o sceAudio_0012.o sceAudio_0013.o sceAudio_0014.o sceAudio_0015.o sceAudio_0016.o sceAudio_0017.o sceAudio_0018.o sceAudio_0019.o sceAudio_0020.o sceAudio_0021.o sceAudio_0022.o sceAudio_0023.o sceAudio_0024.o sceAudio_0025.o sceAudio_0026.o sceAudio_0027.o
@@ -42,10 +42,10 @@ libpspaudiocodec_a_SOURCES = sceAudiocodec.S
libpspaudiocodec_a_LIBADD = $(CODEC_OBJS)
$(AUDIO_OBJS): sceAudio.S
$(COMPILE) -DF_$* $< -c -o $@
$(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@
$(AUDIO_DRIVER_OBJS): sceAudio_driver.S
$(COMPILE) -DF_$* $< -c -o $@
$(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@
$(CODEC_OBJS): sceAudiocodec.S
$(COMPILE) -DF_$* $< -c -o $@
$(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@