diff --git a/configure.ac b/configure.ac index 3c0b0005..09f3729e 100644 --- a/configure.ac +++ b/configure.ac @@ -11,6 +11,7 @@ AC_CONFIG_HEADERS([config.h]) AC_PSPDEV_PATH AM_INIT_AUTOMAKE([1.14 foreign]) +AM_SILENT_RULES([yes]) # Checks for programs. AC_PSPDEV_TOOLCHAIN diff --git a/src/atrac3/Makefile.am b/src/atrac3/Makefile.am index e7d31173..a9fd4b9f 100644 --- a/src/atrac3/Makefile.am +++ b/src/atrac3/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) ATRAC3_OBJS = sceAtrac3plus_0000.o sceAtrac3plus_0001.o sceAtrac3plus_0002.o sceAtrac3plus_0003.o sceAtrac3plus_0004.o sceAtrac3plus_0005.o sceAtrac3plus_0006.o sceAtrac3plus_0007.o sceAtrac3plus_0008.o sceAtrac3plus_0009.o sceAtrac3plus_0010.o sceAtrac3plus_0011.o sceAtrac3plus_0012.o sceAtrac3plus_0013.o sceAtrac3plus_0014.o sceAtrac3plus_0015.o sceAtrac3plus_0016.o sceAtrac3plus_0017.o sceAtrac3plus_0018.o sceAtrac3plus_0019.o sceAtrac3plus_0020.o sceAtrac3plus_0021.o sceAtrac3plus_0022.o sceAtrac3plus_0023.o sceAtrac3plus_0024.o sceAtrac3plus_0025.o @@ -20,4 +20,4 @@ libpspatrac3_a_SOURCES = sceAtrac3plus.S libpspatrac3_a_LIBADD = $(ATRAC3_OBJS) $(ATRAC3_OBJS): sceAtrac3plus.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/audio/Makefile.am b/src/audio/Makefile.am index 9bd79a12..c62c8702 100644 --- a/src/audio/Makefile.am +++ b/src/audio/Makefile.am @@ -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 $@ diff --git a/src/ctrl/Makefile.am b/src/ctrl/Makefile.am index 2363a549..67eaf1f8 100644 --- a/src/ctrl/Makefile.am +++ b/src/ctrl/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) CTRL_OBJS = sceCtrl_0000.o sceCtrl_0001.o sceCtrl_0002.o sceCtrl_0003.o sceCtrl_0004.o sceCtrl_0005.o sceCtrl_0006.o sceCtrl_0007.o sceCtrl_0008.o sceCtrl_0009.o sceCtrl_0010.o sceCtrl_0011.o sceCtrl_0012.o sceCtrl_0013.o sceCtrl_0014.o sceCtrl_0015.o sceCtrl_0016.o @@ -25,8 +25,8 @@ libpspctrl_driver_a_SOURCES = sceCtrl_driver.S libpspctrl_driver_a_LIBADD = $(CTRLDRIVER_OBJS) $(CTRL_OBJS): sceCtrl.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(CTRLDRIVER_OBJS): sceCtrl_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/debug/Makefile.am b/src/debug/Makefile.am index f388dfbc..fb48c579 100644 --- a/src/debug/Makefile.am +++ b/src/debug/Makefile.am @@ -13,7 +13,7 @@ CPPFLAGS = -I$(top_srcdir)/src/base \ -I$(top_srcdir)/src/user \ -I$(top_srcdir)/src/ctrl CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) $(CPPFLAGS) +CCASFLAGS = $(CFLAGS) SCRPRINT_OBJS = pspDebugScreenInit.o pspDebugScreenPrintf.o pspDebugScreenKprintf.o @@ -47,4 +47,4 @@ libpspgdb_kernel_a_SOURCES = gdb-kernellib.c libpspdebugkb_a_SOURCES = pspdebugkb.c $(SCRPRINT_OBJS): scr_printf.c - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/display/Makefile.am b/src/display/Makefile.am index 36412d08..3388d273 100644 --- a/src/display/Makefile.am +++ b/src/display/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) DISPLAY_OBJS = sceDisplay_0000.o sceDisplay_0001.o sceDisplay_0002.o sceDisplay_0003.o sceDisplay_0004.o sceDisplay_0005.o sceDisplay_0006.o sceDisplay_0007.o sceDisplay_0008.o sceDisplay_0009.o sceDisplay_0010.o sceDisplay_0011.o sceDisplay_0012.o sceDisplay_0013.o sceDisplay_0014.o sceDisplay_0015.o sceDisplay_0016.o sceDisplay_0017.o @@ -24,7 +24,7 @@ libpspdisplay_driver_a_SOURCES = sceDisplay_driver.S libpspdisplay_driver_a_LIBADD = $(DISPLAYDRIVER_OBJS) $(DISPLAY_OBJS): sceDisplay.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(DISPLAYDRIVER_OBJS): sceDisplay_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/ge/Makefile.am b/src/ge/Makefile.am index 4c25d057..8bb3dc82 100644 --- a/src/ge/Makefile.am +++ b/src/ge/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) GE_OBJS = sceGe_user_0000.o sceGe_user_0001.o sceGe_user_0002.o sceGe_user_0003.o sceGe_user_0004.o sceGe_user_0005.o sceGe_user_0006.o sceGe_user_0007.o sceGe_user_0008.o sceGe_user_0009.o sceGe_user_0010.o sceGe_user_0011.o sceGe_user_0012.o sceGe_user_0013.o sceGe_user_0014.o sceGe_user_0015.o sceGe_user_0016.o sceGe_user_0017.o sceGe_user_0018.o @@ -24,7 +24,7 @@ libpspge_driver_a_SOURCES = sceGe_driver.S libpspge_driver_a_LIBADD = $(GEDRIVER_OBJS) $(GE_OBJS): sceGe_user.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(GEDRIVER_OBJS): sceGe_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/gu/Makefile.am b/src/gu/Makefile.am index cee6dc2e..3e804333 100644 --- a/src/gu/Makefile.am +++ b/src/gu/Makefile.am @@ -8,7 +8,6 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel -I$(top_srcdir)/src/display -I$(top_srcdir)/src/ge -I$(top_srcdir)/src/user -I$(top_srcdir)/src/debug CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) $(CPPFLAGS) libpspguincludedir = @PSPSDK_INCLUDEDIR@ libpspguinclude_HEADERS = pspgu.h diff --git a/src/gum/Makefile.am b/src/gum/Makefile.am index e8a6d862..541c31a8 100644 --- a/src/gum/Makefile.am +++ b/src/gum/Makefile.am @@ -9,7 +9,6 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel -I$(top_srcdir)/src/display \ -I$(top_srcdir)/src/ge -I$(top_srcdir)/src/user -I$(top_srcdir)/src/vfpu CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) $(CPPFLAGS) libpspgumincludedir = @PSPSDK_INCLUDEDIR@ libpspguminclude_HEADERS = pspgum.h @@ -41,7 +40,7 @@ PSPGUM_VFPU_OBJS = sceGumLoadIdentity_vfpu.o sceGumLoadMatrix_vfpu.o sceGumMa sceGumBeginObject_vfpu.o sceGumEndObject_vfpu.o gumScale_vfpu.o \ gumTranslate_vfpu.o gumLoadIdentity_vfpu.o gumFastInverse_vfpu.o \ gumMultMatrix_vfpu.o gumRotateX_vfpu.o gumRotateY_vfpu.o gumRotateZ_vfpu.o \ - gumInit_vfpu.o + gumInit_vfpu.o libpspgum_a_SOURCES = gumInternal.c pspgum.c libpspgum_a_LIBADD = $(PSPGUM_FPU_OBJS) $(PSPGUM_SHARED_OBJS) @@ -50,10 +49,10 @@ libpspgum_vfpu_a_SOURCES = gumInternal.c pspgum.c pspgum_vfpu.c libpspgum_vfpu_a_LIBADD = $(PSPGUM_VFPU_OBJS) $(PSPGUM_SHARED_OBJS) $(PSPGUM_SHARED_OBJS): pspgum.c - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CC)$(COMPILE) -DF_$* $< -c -o $@ $(PSPGUM_FPU_OBJS): pspgum.c - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CC)$(COMPILE) -DF_$* $< -c -o $@ $(PSPGUM_VFPU_OBJS): pspgum_vfpu.c - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CC)$(COMPILE) -DF_$* $< -c -o $@ diff --git a/src/hprm/Makefile.am b/src/hprm/Makefile.am index 679d24b4..d5268a38 100644 --- a/src/hprm/Makefile.am +++ b/src/hprm/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) HPRM_OBJS = sceHprm_0000.o sceHprm_0001.o sceHprm_0002.o sceHprm_0003.o sceHprm_0004.o sceHprm_0005.o sceHprm_0006.o sceHprm_0007.o sceHprm_0008.o @@ -24,7 +24,7 @@ libpsphprm_driver_a_SOURCES = sceHprm_driver.S libpsphprm_driver_a_LIBADD = $(HPRM_DRIVER_OBJS) $(HPRM_OBJS): sceHprm.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(HPRM_DRIVER_OBJS): sceHprm_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/kernel/Makefile.am b/src/kernel/Makefile.am index 340bf8fc..2ec53a44 100644 --- a/src/kernel/Makefile.am +++ b/src/kernel/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/user CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) $(CPPFLAGS) +CCASFLAGS = $(CFLAGS) EXCEPTION_OBJS = ExceptionManagerForKernel_0000.o ExceptionManagerForKernel_0001.o ExceptionManagerForKernel_0002.o ExceptionManagerForKernel_0003.o ExceptionManagerForKernel_0004.o ExceptionManagerForKernel_0005.o ExceptionManagerForKernel_0006.o ExceptionManagerForKernel_0007.o ExceptionManagerForKernel_0008.o @@ -106,61 +106,61 @@ libpspkernel_a_LIBADD = $(EXCEPTION_OBJS) $(KDEBUG_OBJS) $(LOADCORE_OBJS) $(IO_O $(AUDIOROUTING_OBJS) $(EXCEPTION_OBJS): ExceptionManagerForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(KDEBUG_OBJS): KDebugForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(LOADCORE_OBJS): LoadCoreForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(IO_OBJS): IoFileMgrForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(STDIO_OBJS): StdioForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(SYSREG_OBJS): sceSysreg_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(UTILS_OBJS): UtilsForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(SYSCON_OBJS): sceSyscon_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(INTR_OBJS): InterruptManagerForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(THREAD_OBJS): ThreadManForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(SYSCLIB_OBJS): SysclibForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(LOADEXEC_OBJS): LoadExecForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(SYSMEM_OBJS): SysMemForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(MODULE_OBJS): ModuleMgrForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(IDSTORAGE_OBJS): sceIdStorage_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(SYSTIMER_OBJS): SysTimerForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(SYSEVENT_OBJS): sceSysEventForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(IMPOSE_OBJS): sceImpose_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(INIT_OBJS): InitForKernel.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(AUDIOROUTING_OBJS): sceAudioRouting_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/libc/Makefile.am b/src/libc/Makefile.am index 002e003a..172a05cf 100644 --- a/src/libc/Makefile.am +++ b/src/libc/Makefile.am @@ -10,7 +10,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/libc/include -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel -I$(top_srcdir)/src/user -I$(top_srcdir)/src/debug CFLAGS = @PSPSDK_CFLAGS@ CXXFLAGS = @PSPSDK_CXXFLAGS@ -CCASFLAGS = $(CFLAGS) $(CPPFLAGS) +CCASFLAGS = $(CFLAGS) EXTRA_DIST = LIB.status @@ -55,19 +55,19 @@ libpsplibc_a_SOURCES = $(CORE_SOURCES) $(MULT_SOURCES) libpsplibc_a_LIBADD = $(MULT_OBJS) $(XPRINTF_OBJS): xprintf.c - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(ALLOC_OBJS): alloc.c - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(STRING_C_OBJS): string.c - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(STDIO_OBJS): stdio.c - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(STDLIB_OBJS): stdlib.c - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(GLUE_OBJS): libcglue.c - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/mp3/Makefile.am b/src/mp3/Makefile.am index a52ef353..55c3e85d 100644 --- a/src/mp3/Makefile.am +++ b/src/mp3/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) MP3_OBJS = sceMp3_0000.o sceMp3_0001.o sceMp3_0002.o sceMp3_0003.o sceMp3_0004.o sceMp3_0005.o sceMp3_0006.o sceMp3_0007.o sceMp3_0008.o sceMp3_0009.o sceMp3_0010.o sceMp3_0011.o sceMp3_0012.o sceMp3_0013.o sceMp3_0014.o sceMp3_0015.o sceMp3_0016.o sceMp3_0017.o sceMp3_0018.o sceMp3_0019.o @@ -22,4 +22,4 @@ libpspmp3_a_SOURCES = sceMp3.S libpspmp3_a_LIBADD = $(MP3_OBJS) $(MP3_OBJS): sceMp3.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/mpeg/Makefile.am b/src/mpeg/Makefile.am index 434ea5b8..32b12290 100644 --- a/src/mpeg/Makefile.am +++ b/src/mpeg/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) MPEG_OBJS = sceMpeg_0000.o sceMpeg_0001.o sceMpeg_0002.o sceMpeg_0003.o sceMpeg_0004.o sceMpeg_0005.o sceMpeg_0006.o sceMpeg_0007.o sceMpeg_0008.o sceMpeg_0009.o sceMpeg_0010.o sceMpeg_0011.o sceMpeg_0012.o sceMpeg_0013.o sceMpeg_0014.o sceMpeg_0015.o sceMpeg_0016.o sceMpeg_0017.o sceMpeg_0018.o sceMpeg_0019.o sceMpeg_0020.o sceMpeg_0021.o sceMpeg_0022.o sceMpeg_0023.o sceMpeg_0024.o sceMpeg_0025.o sceMpeg_0026.o sceMpeg_0027.o sceMpeg_0028.o sceMpeg_0029.o sceMpeg_0030.o sceMpeg_0031.o sceMpeg_0032.o sceMpeg_0033.o sceMpeg_0034.o sceMpeg_0035.o sceMpeg_0036.o sceMpeg_0037.o sceMpeg_0038.o @@ -46,14 +46,14 @@ libpspjpeg_a_LIBADD = $(JPEG_OBJS) $(MPEG_OBJS): sceMpeg.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(MPEGBASE_OBJS): sceMpegbase.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(MPEGBASE_DRIVER_OBJS): sceMpegbase_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(JPEG_OBJS): sceJpeg.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/nand/Makefile.am b/src/nand/Makefile.am index e9e330a4..acfba712 100644 --- a/src/nand/Makefile.am +++ b/src/nand/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) NAND_DRIVER_OBJS = sceNand_driver_0000.o sceNand_driver_0001.o sceNand_driver_0002.o sceNand_driver_0003.o sceNand_driver_0004.o sceNand_driver_0005.o sceNand_driver_0006.o sceNand_driver_0007.o sceNand_driver_0008.o sceNand_driver_0009.o sceNand_driver_0010.o sceNand_driver_0011.o sceNand_driver_0012.o sceNand_driver_0013.o sceNand_driver_0014.o sceNand_driver_0015.o sceNand_driver_0016.o sceNand_driver_0017.o sceNand_driver_0018.o sceNand_driver_0019.o sceNand_driver_0020.o sceNand_driver_0021.o sceNand_driver_0022.o sceNand_driver_0023.o sceNand_driver_0024.o sceNand_driver_0025.o sceNand_driver_0026.o sceNand_driver_0027.o sceNand_driver_0028.o sceNand_driver_0029.o sceNand_driver_0030.o sceNand_driver_0031.o sceNand_driver_0032.o sceNand_driver_0033.o sceNand_driver_0034.o sceNand_driver_0035.o sceNand_driver_0036.o sceNand_driver_0037.o sceNand_driver_0038.o sceNand_driver_0039.o @@ -20,4 +20,4 @@ libpspnand_driver_a_SOURCES = sceNand_driver.S libpspnand_driver_a_LIBADD = $(NAND_DRIVER_OBJS) $(NAND_DRIVER_OBJS): sceNand_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/net/Makefile.am b/src/net/Makefile.am index ecc45136..570c1358 100644 --- a/src/net/Makefile.am +++ b/src/net/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) $(CPPFLAGS) +CCASFLAGS = $(CFLAGS) NET_OBJS = sceNet_0000.o sceNet_0001.o sceNet_0002.o sceNet_0003.o sceNet_0004.o sceNet_0005.o sceNet_0006.o sceNet_0007.o sceNet_0008.o @@ -71,31 +71,31 @@ libpspssl_a_SOURCES = sceSsl.S libpspssl_a_LIBADD = $(SSL_OBJS) $(NET_OBJS): sceNet.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(NETLIB_OBJS): sceNet_lib.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(NET_APCTL_OBJS): sceNetApctl.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(NET_INET_OBJS): sceNetInet.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(NET_RESOLVER_OBJS): sceNetResolver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(NET_ADHOC_OBJS): sceNetAdhoc.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(NET_ADHOCCTL_OBJS): sceNetAdhocctl.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(NET_ADHOCMATCHING_OBJS): sceNetAdhocMatching.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(HTTP_OBJS): sceHttp.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(SSL_OBJS): sceSsl.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/openpsid/Makefile.am b/src/openpsid/Makefile.am index f95cd9f0..ed7f2092 100644 --- a/src/openpsid/Makefile.am +++ b/src/openpsid/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) OPENPSID_OBJS = sceOpenPSID_0000.o sceOpenPSID_0001.o @@ -20,4 +20,4 @@ libpspopenpsid_a_SOURCES = sceOpenPSID.S libpspopenpsid_a_LIBADD = $(OPENPSID_OBJS) $(OPENPSID_OBJS): sceOpenPSID.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/power/Makefile.am b/src/power/Makefile.am index fe103359..47e4d73c 100644 --- a/src/power/Makefile.am +++ b/src/power/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) POWER_OBJS = scePower_0000.o scePower_0001.o scePower_0002.o scePower_0003.o scePower_0004.o scePower_0005.o scePower_0006.o scePower_0007.o scePower_0008.o scePower_0009.o scePower_0010.o scePower_0011.o scePower_0012.o scePower_0013.o scePower_0014.o scePower_0015.o scePower_0016.o scePower_0017.o scePower_0018.o scePower_0019.o scePower_0020.o scePower_0021.o scePower_0022.o scePower_0023.o scePower_0024.o scePower_0025.o scePower_0026.o scePower_0027.o scePower_0028.o scePower_0029.o scePower_0030.o scePower_0031.o scePower_0032.o scePower_0033.o scePower_0034.o scePower_0035.o scePower_0036.o scePower_0037.o scePower_0038.o scePower_0039.o scePower_0040.o scePower_0041.o scePower_0042.o scePower_0043.o scePower_0044.o scePower_0045.o scePower_0046.o @@ -25,7 +25,7 @@ libpsppower_driver_a_SOURCES = scePower_driver.S libpsppower_driver_a_LIBADD = $(POWERDRIVER_OBJS) $(POWER_OBJS): scePower.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(POWERDRIVER_OBJS): scePower_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/registry/Makefile.am b/src/registry/Makefile.am index aa07e7c4..c7e9d0d2 100644 --- a/src/registry/Makefile.am +++ b/src/registry/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) REG_OBJS = sceReg_0000.o sceReg_0001.o sceReg_0002.o sceReg_0003.o sceReg_0004.o sceReg_0005.o sceReg_0006.o sceReg_0007.o sceReg_0008.o sceReg_0009.o sceReg_0010.o sceReg_0011.o sceReg_0012.o sceReg_0013.o sceReg_0014.o sceReg_0015.o sceReg_0016.o sceReg_0017.o sceReg_0018.o @@ -25,8 +25,8 @@ libpspreg_driver_a_SOURCES = sceReg_driver.S libpspreg_driver_a_LIBADD = $(REGDRIVER_OBJS) $(REG_OBJS): sceReg.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(REGDRIVER_OBJS): sceReg_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/rtc/Makefile.am b/src/rtc/Makefile.am index d9a4f0b9..457855fb 100644 --- a/src/rtc/Makefile.am +++ b/src/rtc/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) RTC_OBJS = sceRtc_0000.o sceRtc_0001.o sceRtc_0002.o sceRtc_0003.o sceRtc_0004.o sceRtc_0005.o sceRtc_0006.o sceRtc_0007.o sceRtc_0008.o sceRtc_0009.o sceRtc_0010.o sceRtc_0011.o sceRtc_0012.o sceRtc_0013.o sceRtc_0014.o sceRtc_0015.o sceRtc_0016.o sceRtc_0017.o sceRtc_0018.o sceRtc_0019.o sceRtc_0020.o sceRtc_0021.o sceRtc_0022.o sceRtc_0023.o sceRtc_0024.o sceRtc_0025.o sceRtc_0026.o sceRtc_0027.o sceRtc_0028.o sceRtc_0029.o sceRtc_0030.o sceRtc_0031.o sceRtc_0032.o sceRtc_0033.o sceRtc_0034.o sceRtc_0035.o sceRtc_0036.o sceRtc_0037.o sceRtc_0038.o sceRtc_0039.o sceRtc_0040.o sceRtc_0041.o @@ -25,7 +25,7 @@ libpsprtc_driver_a_SOURCES = sceRtc_driver.S libpsprtc_driver_a_LIBADD = $(RTCDRIVER_OBJS) $(RTC_OBJS): sceRtc.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(RTCDRIVER_OBJS): sceRtc_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/sdk/Makefile.am b/src/sdk/Makefile.am index dd5b131d..789fc94c 100644 --- a/src/sdk/Makefile.am +++ b/src/sdk/Makefile.am @@ -13,7 +13,7 @@ CPPFLAGS = -I$(top_srcdir)/src/base \ -I$(top_srcdir)/src/utility \ -I$(top_srcdir)/src/debug CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) $(CPPFLAGS) +CCASFLAGS = $(CFLAGS) libpspsdkincludedir = @PSPSDK_INCLUDEDIR@ libpspsdkinclude_HEADERS = pspsdk.h @@ -34,7 +34,7 @@ libpspsdk_a_SOURCES = query_mod.c loadmodule.c fixup.c threadutils.c interrupt.S libpspsdk_a_LIBADD = $(MULT_OBJS) $(MODULEMGR_PATCHES_OBJS): modulemgr_patches.c - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(INETHELPER_OBJS): inethelper.c - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/sircs/Makefile.am b/src/sircs/Makefile.am index e76c3e0a..4fdbc8e5 100644 --- a/src/sircs/Makefile.am +++ b/src/sircs/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) SIRCS_OBJS = sceSircs_0000.o sceSircs_0001.o @@ -20,4 +20,4 @@ libpspsircs_a_SOURCES = sceSircs.S libpspsircs_a_LIBADD = $(SIRCS_OBJS) $(SIRCS_OBJS): sceSircs.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/startup/Makefile.am b/src/startup/Makefile.am index fe343df9..4c815bfd 100644 --- a/src/startup/Makefile.am +++ b/src/startup/Makefile.am @@ -6,7 +6,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel -I$(top_srcdir)/src/user -I$(top_srcdir)/src/debug CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) $(CPPFLAGS) +CCASFLAGS = $(CFLAGS) ## Borrow this trick from newlib - create a dummy library to generate build rules. noinst_LIBRARIES = lib.a diff --git a/src/umd/Makefile.am b/src/umd/Makefile.am index 2bceadb5..5cdc8a9c 100644 --- a/src/umd/Makefile.am +++ b/src/umd/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) UMDUSER_OBJS = sceUmdUser_0000.o sceUmdUser_0001.o sceUmdUser_0002.o sceUmdUser_0003.o sceUmdUser_0004.o sceUmdUser_0005.o sceUmdUser_0006.o sceUmdUser_0007.o sceUmdUser_0008.o sceUmdUser_0009.o sceUmdUser_0010.o sceUmdUser_0011.o sceUmdUser_0012.o sceUmdUser_0013.o sceUmdUser_0014.o @@ -26,7 +26,7 @@ libpspumd_driver_a_SOURCES = sceUmd.S libpspumd_driver_a_LIBADD = $(UMD_OBJS) $(UMDUSER_OBJS): sceUmdUser.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(UMD_OBJS): sceUmd.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/usb/Makefile.am b/src/usb/Makefile.am index d0a97bff..d9107837 100644 --- a/src/usb/Makefile.am +++ b/src/usb/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) $(CPPFLAGS) +CCASFLAGS = $(CFLAGS) USB_OBJS = sceUsb_0000.o sceUsb_0001.o sceUsb_0002.o sceUsb_0003.o sceUsb_0004.o sceUsb_0005.o sceUsb_0006.o sceUsb_0007.o sceUsb_0008.o sceUsb_0009.o @@ -39,13 +39,13 @@ libpspusbcam_a_SOURCES = sceUsbCam.S libpspusbcam_a_LIBADD = $(USBCAM_OBJS) $(USB_OBJS): sceUsb.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(USBDRIVER_OBJS): sceUsb_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(USBBUSDRIVER_OBJS): sceUsbBus_driver.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(USBCAM_OBJS): sceUsbCam.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/usbstor/Makefile.am b/src/usbstor/Makefile.am index f6653017..701aac8b 100644 --- a/src/usbstor/Makefile.am +++ b/src/usbstor/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) $(CPPFLAGS) +CCASFLAGS = $(CFLAGS) USBSTOR_OBJS = sceUsbstor_0000.o sceUsbstor_0001.o USBSTORBOOT_OBJS = sceUsbstorBoot_0000.o sceUsbstorBoot_0001.o sceUsbstorBoot_0002.o sceUsbstorBoot_0003.o sceUsbstorBoot_0004.o sceUsbstorBoot_0005.o sceUsbstorBoot_0006.o @@ -24,7 +24,7 @@ libpspusbstor_a_SOURCES = sceUsbstor.S sceUsbstorBoot.S libpspusbstor_a_LIBADD = $(USBSTOR_OBJS) $(USBSTORBOOT_OBJS) $(USBSTOR_OBJS): sceUsbstor.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(USBSTORBOOT_OBJS): sceUsbstorBoot.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/user/Makefile.am b/src/user/Makefile.am index 8d73b5dd..de2a1fe9 100644 --- a/src/user/Makefile.am +++ b/src/user/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) $(CPPFLAGS) +CCASFLAGS = $(CFLAGS) IO_OBJS = IoFileMgrForUser_0000.o IoFileMgrForUser_0001.o IoFileMgrForUser_0002.o IoFileMgrForUser_0003.o IoFileMgrForUser_0004.o IoFileMgrForUser_0005.o IoFileMgrForUser_0006.o IoFileMgrForUser_0007.o IoFileMgrForUser_0008.o IoFileMgrForUser_0009.o IoFileMgrForUser_0010.o IoFileMgrForUser_0011.o IoFileMgrForUser_0012.o IoFileMgrForUser_0013.o IoFileMgrForUser_0014.o IoFileMgrForUser_0015.o IoFileMgrForUser_0016.o IoFileMgrForUser_0017.o IoFileMgrForUser_0018.o IoFileMgrForUser_0019.o IoFileMgrForUser_0020.o IoFileMgrForUser_0021.o IoFileMgrForUser_0022.o IoFileMgrForUser_0023.o IoFileMgrForUser_0024.o IoFileMgrForUser_0025.o IoFileMgrForUser_0026.o IoFileMgrForUser_0027.o IoFileMgrForUser_0028.o IoFileMgrForUser_0029.o IoFileMgrForUser_0030.o IoFileMgrForUser_0031.o IoFileMgrForUser_0032.o IoFileMgrForUser_0033.o IoFileMgrForUser_0034.o IoFileMgrForUser_0035.o IoFileMgrForUser_0036.o @@ -83,34 +83,34 @@ $(LOADEXEC_OBJS) \ $(IMPOSE_OBJS) $(IO_OBJS): IoFileMgrForUser.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(KERNEL_OBJS): Kernel_Library.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(MODMGR_OBJS): ModuleMgrForUser.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(STDIO_OBJS): StdioForUser.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(SUSPEND_OBJS): sceSuspendForUser.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(SYSMEM_OBJS): SysMemUserForUser.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(THREADMAN_OBJS): ThreadManForUser.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(UTILS_OBJS): UtilsForUser.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(INTERRUPT_OBJS): InterruptManager.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(LOADEXEC_OBJS): LoadExecForUser.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(IMPOSE_OBJS): sceImpose.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/utility/Makefile.am b/src/utility/Makefile.am index 67a9b7bb..985b89a8 100644 --- a/src/utility/Makefile.am +++ b/src/utility/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) UTILITY_OBJS = sceUtility_0000.o sceUtility_0001.o sceUtility_0002.o sceUtility_0003.o sceUtility_0004.o sceUtility_0005.o sceUtility_0006.o sceUtility_0007.o sceUtility_0008.o sceUtility_0009.o sceUtility_0010.o sceUtility_0011.o sceUtility_0012.o sceUtility_0013.o sceUtility_0014.o sceUtility_0015.o sceUtility_0016.o sceUtility_0017.o sceUtility_0018.o sceUtility_0019.o sceUtility_0020.o sceUtility_0021.o sceUtility_0022.o sceUtility_0023.o sceUtility_0024.o sceUtility_0025.o sceUtility_0026.o sceUtility_0027.o sceUtility_0028.o sceUtility_0029.o sceUtility_0030.o sceUtility_0031.o sceUtility_0032.o sceUtility_0033.o sceUtility_0034.o sceUtility_0035.o sceUtility_0036.o sceUtility_0037.o sceUtility_0038.o sceUtility_0039.o sceUtility_0040.o sceUtility_0041.o sceUtility_0042.o sceUtility_0043.o sceUtility_0044.o sceUtility_0045.o sceUtility_0046.o sceUtility_0047.o @@ -34,7 +34,7 @@ libpsputility_a_SOURCES = sceUtility.S sceUtility_netparam_internal.S libpsputility_a_LIBADD = $(UTILITY_OBJS) $(NETPARAM_OBJS) $(UTILITY_OBJS): sceUtility.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(NETPARAM_OBJS): sceUtility_netparam_internal.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/video/Makefile.am b/src/video/Makefile.am index 091c92f1..f7aca1bd 100644 --- a/src/video/Makefile.am +++ b/src/video/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) VIDEOCODEC_OBJS = sceVideocodec_0000.o sceVideocodec_0001.o sceVideocodec_0002.o sceVideocodec_0003.o sceVideocodec_0004.o sceVideocodec_0005.o sceVideocodec_0006.o sceVideocodec_0007.o sceVideocodec_0008.o sceVideocodec_0009.o sceVideocodec_0010.o sceVideocodec_0011.o sceVideocodec_0012.o sceVideocodec_0013.o @@ -24,4 +24,4 @@ libpspvideocodec_a_SOURCES = sceVideocodec.S libpspvideocodec_a_LIBADD = $(VIDEOCODEC_OBJS) $(VIDEOCODEC_OBJS): sceVideocodec.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/vsh/Makefile.am b/src/vsh/Makefile.am index d1564749..2072ee5b 100644 --- a/src/vsh/Makefile.am +++ b/src/vsh/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) CHNNLSV_OBJS = sceChnnlsv_0000.o sceChnnlsv_0001.o sceChnnlsv_0002.o sceChnnlsv_0003.o sceChnnlsv_0004.o sceChnnlsv_0005.o sceChnnlsv_0006.o VSHBRIDGE_OBJS = sceVshBridge_0000.o sceVshBridge_0001.o sceVshBridge_0002.o sceVshBridge_0003.o sceVshBridge_0004.o sceVshBridge_0005.o sceVshBridge_0006.o sceVshBridge_0007.o sceVshBridge_0008.o sceVshBridge_0009.o sceVshBridge_0010.o sceVshBridge_0011.o sceVshBridge_0012.o sceVshBridge_0013.o sceVshBridge_0014.o sceVshBridge_0015.o sceVshBridge_0016.o sceVshBridge_0017.o sceVshBridge_0018.o sceVshBridge_0019.o sceVshBridge_0020.o sceVshBridge_0021.o sceVshBridge_0022.o sceVshBridge_0023.o sceVshBridge_0024.o sceVshBridge_0025.o sceVshBridge_0026.o sceVshBridge_0027.o sceVshBridge_0028.o sceVshBridge_0029.o sceVshBridge_0030.o sceVshBridge_0031.o sceVshBridge_0032.o sceVshBridge_0033.o sceVshBridge_0034.o sceVshBridge_0035.o sceVshBridge_0036.o sceVshBridge_0037.o sceVshBridge_0038.o sceVshBridge_0039.o sceVshBridge_0040.o sceVshBridge_0041.o sceVshBridge_0042.o sceVshBridge_0043.o sceVshBridge_0044.o sceVshBridge_0045.o sceVshBridge_0046.o sceVshBridge_0047.o sceVshBridge_0048.o sceVshBridge_0049.o sceVshBridge_0050.o sceVshBridge_0051.o sceVshBridge_0052.o sceVshBridge_0053.o sceVshBridge_0054.o sceVshBridge_0055.o sceVshBridge_0056.o sceVshBridge_0057.o sceVshBridge_0058.o sceVshBridge_0059.o sceVshBridge_0060.o sceVshBridge_0061.o sceVshBridge_0062.o @@ -26,10 +26,10 @@ libpsppaf_a_SOURCES = scePaf.S libpsppaf_a_LIBADD = $(PAF_OBJS) $(CHNNLSV_OBJS): sceChnnlsv.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(VSHBRIDGE_OBJS): sceVshBridge.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(PAF_OBJS): scePaf.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ diff --git a/src/wlan/Makefile.am b/src/wlan/Makefile.am index 4c8db499..5e5849fd 100644 --- a/src/wlan/Makefile.am +++ b/src/wlan/Makefile.am @@ -8,7 +8,7 @@ RANLIB = @PSP_RANLIB@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel CFLAGS = @PSPSDK_CFLAGS@ -CCASFLAGS = $(CFLAGS) -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel +CCASFLAGS = $(CFLAGS) WLAN_OBJS = sceWlanDrv_0000.o sceWlanDrv_0001.o sceWlanDrv_0002.o sceWlanDrv_0003.o WLANLIB_OBJS = sceWlanDrv_lib_0000.o sceWlanDrv_lib_0001.o sceWlanDrv_lib_0002.o sceWlanDrv_lib_0003.o sceWlanDrv_lib_0004.o sceWlanDrv_lib_0005.o sceWlanDrv_lib_0006.o sceWlanDrv_lib_0007.o sceWlanDrv_lib_0008.o sceWlanDrv_lib_0009.o sceWlanDrv_lib_0010.o sceWlanDrv_lib_0011.o sceWlanDrv_lib_0012.o sceWlanDrv_lib_0013.o sceWlanDrv_lib_0014.o sceWlanDrv_lib_0015.o sceWlanDrv_lib_0016.o sceWlanDrv_lib_0017.o sceWlanDrv_lib_0018.o @@ -21,7 +21,7 @@ libpspwlan_a_SOURCES = sceWlanDrv.S sceWlanDrv_lib.S libpspwlan_a_LIBADD = $(WLAN_OBJS) $(WLANLIB_OBJS) $(WLAN_OBJS): sceWlanDrv.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@ $(WLANLIB_OBJS): sceWlanDrv_lib.S - $(COMPILE) -DF_$* $< -c -o $@ + $(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@