ifneq ($(RULES_MAKE), ) include $(RULES_MAKE) endif VOLIB_INSTALL_PATH ?= $(SDK_INSTALL_PATH)/volib_C64P_2_1_0_1 AER_INSTALL_PATH ?= $(SDK_INSTALL_PATH)/aer_c64Px_obj_17_0_0_0 XDAIS_INSTALL_PATH ?= $(SDK_INSTALL_PATH)/xdais_7_24_00_04 GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" GEN_CMDS__FLAG := -l"configPkg/linker.cmd" ORDERED_OBJS += \ "./I2C_soc.obj" \ "./fil.obj" \ "./mcasp_soc.obj" \ "./mhm.obj" \ "./mss.obj" \ "./mssproc.obj" \ "./sys.obj" \ "./sysasnr.obj" \ "./sysbf.obj" \ "./sysbfflt.obj" \ "./sysdrc.obj" \ "./syseram.obj" \ "./sysiram.obj" \ "./sysmss.obj" \ "./aic31.obj" \ "./aic3106_if.obj" \ "./audioSample_io.obj" \ "./audioSample_main.obj" \ "./audio_evmInit.obj" \ "./mcasp_cfg.obj" \ "./pcm186x_if.obj" \ "../src/sysbios/BIOS.obj" \ "../src/sysbios/c62_TaskSupport_asm.obj" \ "../src/sysbios/c64p_Exception_asm.obj" \ "../src/sysbios/c64p_Hwi_asm.obj" \ "../src/sysbios/c64p_Hwi_asm_switch.obj" \ "../src/sysbios/c64p_Hwi_disp_always.obj" \ "../src/sysbios/ti_tls_get_tp.obj" \ "../src/sysbios/timer64_Timer_asm.obj" \ "../bflinker.cmd" \ $(GEN_CMDS__FLAG) \ -lti.addon.cmb.ae674 \ -lti.board.ae674 \ -lti.drv.mcasp.ae674 \ -lti.drv.i2c.ae674 \ -lti.csl.ae674 \ -laer_c.ae64P \ -lvau/lib/vau_c.ae64P \ -lvpe/lib/vpe_a.ae64P \ -lvpe/lib/vpe_c.ae64P \ -lutil/lib/util_c.ae64P \ -lmhm/lib/mhm_c.ae64P \ -llibc.a \ -include ../makefile.init OS := $(shell uname) ifeq ($(OS), Linux) RM := rm -f RMDIR := rm -d -f -r else RM := rm -f RMDIR := rm -r -f endif # All of the sources participating in the build are defined here ## -include sources.mk ## -include subdir_vars.mk # Add inputs and outputs from these tool invocations to the build variables CMD_SRCS += \ ../bflinker.cmd CFG_SRCS += \ ../OMAPL137_bf_rt.cfg C_SRCS += \ $(PDK_INSTALL_PATH)/packages/ti/drv/i2c/soc/omapl137/I2C_soc.c \ ../../../common/components/fil.c \ $(PDK_INSTALL_PATH)/packages/ti/drv/mcasp/soc/omapl137/mcasp_soc.c \ ../../../common/components/mhm/src/mhm.c \ ../../../common/components/mss/src/mss.c \ ../../../common/components/mss/src/mssproc.c \ ../../../common/components/sys.c \ ../../../common/components/sysasnr.c \ ../../../common/components/sysbf.c \ ../../../common/components/sysbfflt.c \ ../../../common/components/sysdrc.c \ ../../../common/components/syseram.c \ ../../../common/components/sysiram.c \ ../../../common/components/sysmss.c OBJS += \ ./I2C_soc.obj \ ./fil.obj \ ./mcasp_soc.obj \ ./mhm.obj \ ./mss.obj \ ./mssproc.obj \ ./sys.obj \ ./sysasnr.obj \ ./sysbf.obj \ ./sysbfflt.obj \ ./sysdrc.obj \ ./syseram.obj \ ./sysiram.obj \ ./sysmss.obj C_DEPS += \ ./I2C_soc.d \ ./fil.d \ ./mcasp_soc.d \ ./mhm.d \ ./mss.d \ ./mssproc.d \ ./sys.d \ ./sysasnr.d \ ./sysbf.d \ ./sysbfflt.d \ ./sysdrc.d \ ./syseram.d \ ./sysiram.d \ ./sysmss.d GEN_MISC_DIRS += \ ./configPkg GEN_CMDS += \ ./configPkg/linker.cmd GEN_OPTS += \ ./configPkg/compiler.opt GEN_FILES += \ ./configPkg/linker.cmd \ ./configPkg/compiler.opt GEN_FILES__QUOTED += \ "configPkg\linker.cmd" \ "configPkg\compiler.opt" GEN_MISC_DIRS__QUOTED += \ "configPkg" C_DEPS__QUOTED += \ "I2C_soc.d" \ "fil.d" \ "mcasp_soc.d" \ "mhm.d" \ "mss.d" \ "mssproc.d" \ "sys.d" \ "sysasnr.d" \ "sysbf.d" \ "sysbfflt.d" \ "sysdrc.d" \ "syseram.d" \ "sysiram.d" \ "sysmss.d" OBJS__QUOTED += \ "I2C_soc.obj" \ "fil.obj" \ "mcasp_soc.obj" \ "mhm.obj" \ "mss.obj" \ "mssproc.obj" \ "sys.obj" \ "sysasnr.obj" \ "sysbf.obj" \ "sysbfflt.obj" \ "sysdrc.obj" \ "syseram.obj" \ "sysiram.obj" \ "sysmss.obj" C_SRCS__QUOTED += \ "$(PDK_INSTALL_PATH)/packages/ti/drv/i2c/soc/omapl137/I2C_soc.c" \ "../../../common/components/fil.c" \ "$(PDK_INSTALL_PATH)/packages/ti/drv/mcasp/soc/omapl137/mcasp_soc.c" \ "../../../common/components/mhm/src/mhm.c" \ "../../../common/components/mss/src/mss.c" \ "../../../common/components/mss/src/mssproc.c" \ "../../../common/components/sys.c" \ "../../../common/components/sysasnr.c" \ "../../../common/components/sysbf.c" \ "../../../common/components/sysbfflt.c" \ "../../../common/components/sysdrc.c" \ "../../../common/components/syseram.c" \ "../../../common/components/sysiram.c" \ "../../../common/components/sysmss.c" ## -include src/subdir_vars.mk # Add inputs and outputs from these tool invocations to the build variables C_SRCS += \ ../src/aic31.c \ ../src/aic3106_if.c \ ../src/audioSample_io.c \ ../src/audioSample_main.c \ ../src/audio_evmInit.c \ ../src/mcasp_cfg.c \ ../src/pcm186x_if.c OBJS += \ ./aic31.obj \ ./aic3106_if.obj \ ./audioSample_io.obj \ ./audioSample_main.obj \ ./audio_evmInit.obj \ ./mcasp_cfg.obj \ ./pcm186x_if.obj C_DEPS += \ ./aic31.d \ ./aic3106_if.d \ ./audioSample_io.d \ ./audioSample_main.d \ ./audio_evmInit.d \ ./mcasp_cfg.d \ ./pcm186x_if.d C_DEPS__QUOTED += \ "aic31.d" \ "aic3106_if.d" \ "audioSample_io.d" \ "audioSample_main.d" \ "audio_evmInit.d" \ "mcasp_cfg.d" \ "pcm186x_if.d" OBJS__QUOTED += \ "aic31.obj" \ "aic3106_if.obj" \ "audioSample_io.obj" \ "audioSample_main.obj" \ "audio_evmInit.obj" \ "mcasp_cfg.obj" \ "pcm186x_if.obj" C_SRCS__QUOTED += \ "../src/aic31.c" \ "../src/aic3106_if.c" \ "../src/audioSample_io.c" \ "../src/audioSample_main.c" \ "../src/audio_evmInit.c" \ "../src/mcasp_cfg.c" \ "../src/pcm186x_if.c" ## -include src/sysbios/subdir_vars.mk # Add inputs and outputs from these tool invocations to the build variables OBJ_SRCS += \ ../src/sysbios/BIOS.obj \ ../src/sysbios/c62_TaskSupport_asm.obj \ ../src/sysbios/c64p_Exception_asm.obj \ ../src/sysbios/c64p_Hwi_asm.obj \ ../src/sysbios/c64p_Hwi_asm_switch.obj \ ../src/sysbios/c64p_Hwi_disp_always.obj \ ../src/sysbios/ti_tls_get_tp.obj \ ../src/sysbios/timer64_Timer_asm.obj ## -include subdir_rules.mk # Each subdirectory must supply rules for building sources it contributes I2C_soc.obj: $(PDK_INSTALL_PATH)/ti/drv/i2c/soc/omapl137/I2C_soc.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="I2C_soc.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' configPkg/linker.cmd: ../OMAPL137_bf_rt.cfg @echo 'Building file: $<' @echo 'Invoking: XDCtools' "$(XDC_INSTALL_PATH)/xs" --xdcpath="$(EDMA3LLD_BIOS6_INSTALLDIR)/packages;C:/ti/ccsv6/ccs_base;$(BIOS_INSTALL_PATH)/packages;$(UIA_INSTALL_PATH)/packages;$(PDK_INSTALL_PATH);$(XDAIS_INSTALL_PATH)/packages;$(XDAIS_INSTALL_PATH)/examples;$(VOLIB_INSTALL_PATH)/packages;$(AER_INSTALL_PATH)/packages;" xdc.tools.configuro -o configPkg -t ti.targets.elf.C674 -p ti.platforms.evmOMAPL137 -r debug -c "$(C6X_GEN_INSTALL_PATH)" "$<" @echo 'Finished building: $<' @echo ' ' configPkg/compiler.opt: | configPkg/linker.cmd configPkg/: | configPkg/linker.cmd fil.obj: ../../../common/components/fil.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="fil.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' mcasp_soc.obj: $(PDK_INSTALL_PATH)/ti/drv/mcasp/soc/omapl137/mcasp_soc.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="mcasp_soc.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' mhm.obj: ../../../common/components/mhm/src/mhm.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="mhm.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' mss.obj: ../../../common/components/mss/src/mss.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="mss.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' mssproc.obj: ../../../common/components/mss/src/mssproc.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="mssproc.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' sys.obj: ../../../common/components/sys.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="sys.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' sysasnr.obj: ../../../common/components/sysasnr.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="sysasnr.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' sysbf.obj: ../../../common/components/sysbf.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="sysbf.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' sysbfflt.obj: ../../../common/components/sysbfflt.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="sysbfflt.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' sysdrc.obj: ../../../common/components/sysdrc.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="sysdrc.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' syseram.obj: ../../../common/components/syseram.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="syseram.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' sysiram.obj: ../../../common/components/sysiram.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="sysiram.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' sysmss.obj: ../../../common/components/sysmss.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="sysmss.d" $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' ## -include src/subdir_rules.mk ./aic31.obj: ../src/aic31.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="aic31.d" --obj_directory="." $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' aic3106_if.obj: ../src/aic3106_if.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="aic3106_if.d" --obj_directory="." $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' audioSample_io.obj: ../src/audioSample_io.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="audioSample_io.d" --obj_directory="." $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' audioSample_main.obj: ../src/audioSample_main.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="audioSample_main.d" --obj_directory="." $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' audio_evmInit.obj: ../src/audio_evmInit.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="audio_evmInit.d" --obj_directory="." $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' mcasp_cfg.obj: ../src/mcasp_cfg.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="mcasp_cfg.d" --obj_directory="." $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' pcm186x_if.obj: ../src/pcm186x_if.c $(GEN_OPTS) $(GEN_HDRS) @echo 'Building file: $<' @echo 'Invoking: C6000 Compiler' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 --include_path="../../../common/components" --include_path="$(C6X_GEN_INSTALL_PATH)/include" --include_path="../include" --include_path="$(PDK_INSTALL_PATH)/ti/drv/mcasp" --include_path="$(PDK_INSTALL_PATH)/ti/board" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb" --include_path="$(PDK_INSTALL_PATH)/ti/addon/cmb/src/evmOMAPL137/include" --include_path="$(PDK_INSTALL_PATH)" --include_path="$(PDK_INSTALL_PATH)/ti/csl" -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number --preproc_with_compile --preproc_dependency="pcm186x_if.d" --obj_directory="." $(GEN_OPTS__FLAG) "$<" @echo 'Finished building: $<' @echo ' ' ## -include objects.mk USER_OBJS := LIBS := -lti.addon.cmb.ae674 -lti.board.ae674 -lti.drv.mcasp.ae674 -lti.drv.i2c.ae674 -lti.csl.ae674 -laer_c.ae64P -lvau/lib/vau_c.ae64P -lvpe/lib/vpe_a.ae64P -lvpe/lib/vpe_c.ae64P -lutil/lib/util_c.ae64P -lmhm/lib/mhm_c.ae64P -llibc.a ifneq ($(MAKECMDGOALS),clean) ifneq ($(strip $(S_DEPS)),) -include $(S_DEPS) endif ifneq ($(strip $(S_UPPER_DEPS)),) -include $(S_UPPER_DEPS) endif ifneq ($(strip $(S62_DEPS)),) -include $(S62_DEPS) endif ifneq ($(strip $(C64_DEPS)),) -include $(C64_DEPS) endif ifneq ($(strip $(ASM_DEPS)),) -include $(ASM_DEPS) endif ifneq ($(strip $(CC_DEPS)),) -include $(CC_DEPS) endif ifneq ($(strip $(SV7A_DEPS)),) -include $(SV7A_DEPS) endif ifneq ($(strip $(S55_DEPS)),) -include $(S55_DEPS) endif ifneq ($(strip $(C67_DEPS)),) -include $(C67_DEPS) endif ifneq ($(strip $(CLA_DEPS)),) -include $(CLA_DEPS) endif ifneq ($(strip $(C??_DEPS)),) -include $(C??_DEPS) endif ifneq ($(strip $(CPP_DEPS)),) -include $(CPP_DEPS) endif ifneq ($(strip $(S??_DEPS)),) -include $(S??_DEPS) endif ifneq ($(strip $(C_DEPS)),) -include $(C_DEPS) endif ifneq ($(strip $(C62_DEPS)),) -include $(C62_DEPS) endif ifneq ($(strip $(CXX_DEPS)),) -include $(CXX_DEPS) endif ifneq ($(strip $(C++_DEPS)),) -include $(C++_DEPS) endif ifneq ($(strip $(ASM_UPPER_DEPS)),) -include $(ASM_UPPER_DEPS) endif ifneq ($(strip $(K_DEPS)),) -include $(K_DEPS) endif ifneq ($(strip $(C43_DEPS)),) -include $(C43_DEPS) endif ifneq ($(strip $(INO_DEPS)),) -include $(INO_DEPS) endif ifneq ($(strip $(S67_DEPS)),) -include $(S67_DEPS) endif ifneq ($(strip $(SA_DEPS)),) -include $(SA_DEPS) endif ifneq ($(strip $(S43_DEPS)),) -include $(S43_DEPS) endif ifneq ($(strip $(OPT_DEPS)),) -include $(OPT_DEPS) endif ifneq ($(strip $(PDE_DEPS)),) -include $(PDE_DEPS) endif ifneq ($(strip $(S64_DEPS)),) -include $(S64_DEPS) endif ifneq ($(strip $(C_UPPER_DEPS)),) -include $(C_UPPER_DEPS) endif ifneq ($(strip $(C55_DEPS)),) -include $(C55_DEPS) endif endif -include ../makefile.defs # Add inputs and outputs from these tool invocations to the build variables EXE_OUTPUTS += \ OMAPL137_bf_rt.out \ EXE_OUTPUTS__QUOTED += \ "OMAPL137_bf_rt.out" \ BIN_OUTPUTS += \ OMAPL137_bf_rt.hex \ BIN_OUTPUTS__QUOTED += \ "OMAPL137_bf_rt.hex" \ # All Target all: OMAPL137_bf_rt.out # Tool invocations OMAPL137_bf_rt.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) @echo 'Building target: $@' @echo 'Invoking: C6000 Linker' "$(C6X_GEN_INSTALL_PATH)/bin/cl6x" -mv6740 --abi=eabi --opt_for_speed=5 -g --define=DEVICE_OMAPL137 --define=SOC_OMAPL137 --define=evmOMAPL137 --define=PLATFORM_INIT_IN --define=BUILD_DSP --define=CMB_AUDIO_DAC=1 --define=AIC_CODEC --define=MCASP_MASTER --define=omapl137 --define=ti_targets_C64P --diag_wrap=off --diag_warning=225 --display_error_number -z -m"OMAPL137_bf_rt.map" --stack_size=0x2000 --heap_size=0x800 -i"$(C6X_GEN_INSTALL_PATH)/lib" -i"$(XDC_INSTALL_PATH)/lib" -i"$(C6X_GEN_INSTALL_PATH)/include" -i"$(PDK_INSTALL_PATH)/ti/board/lib/evmOMAPL137/c674/release" -i"$(PDK_INSTALL_PATH)/ti/addon/cmb/lib/omapl137/c674/release" -i"$(PDK_INSTALL_PATH)/ti/drv/mcasp/lib/omapl137/c674/release" -i"$(PDK_INSTALL_PATH)/ti/drv/i2c/lib/omapl137/c674/release" -i"$(PDK_INSTALL_PATH)/ti/csl/lib/omapl137/c674/release" -i"$(AER_INSTALL_PATH)/packages/ti/mas/aer/lib" -i"$(VOLIB_INSTALL_PATH)/packages/ti/mas/" --reread_libs --define=DSP_CORE=1 --diag_wrap=off --warn_sections --display_error_number --xml_link_info="OMAPL137_bf_rt_linkInfo.xml" --rom_model -o "OMAPL137_bf_rt.out" $(ORDERED_OBJS) @echo 'Finished building target: $@' @echo ' ' OMAPL137_bf_rt.hex: $(EXE_OUTPUTS) @echo 'Invoking: C6000 Hex Utility' "$(C6X_GEN_INSTALL_PATH)/bin/hex6x" -o "OMAPL137_bf_rt.hex" $(EXE_OUTPUTS__QUOTED) @echo 'Finished building: $@' @echo ' ' # Other Targets clean: -$(RM) $(GEN_MISC_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED)$(GEN_CMDS__QUOTED) -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) -$(RM) "I2C_soc.d" "fil.d" "mcasp_soc.d" "mhm.d" "mss.d" "mssproc.d" "sys.d" "sysasnr.d" "sysbf.d" "sysbfflt.d" "sysdrc.d" "syseram.d" "sysiram.d" "sysmss.d" "aic31.d" "aic3106_if.d" "audioSample_io.d" "audioSample_main.d" "audio_evmInit.d" "mcasp_cfg.d" "pcm186x_if.d" -$(RM) "I2C_soc.obj" "fil.obj" "mcasp_soc.obj" "mhm.obj" "mss.obj" "mssproc.obj" "sys.obj" "sysasnr.obj" "sysbf.obj" "sysbfflt.obj" "sysdrc.obj" "syseram.obj" "sysiram.obj" "sysmss.obj" "aic31.obj" "aic3106_if.obj" "audioSample_io.obj" "audioSample_main.obj" "audio_evmInit.obj" "mcasp_cfg.obj" "pcm186x_if.obj" -@echo 'Finished clean' -@echo ' ' .PHONY: all clean dependents .SECONDARY: -include ../makefile.targets