view src/cs/layer1/tpu_drivers/tpu_drivers.mak @ 205:81f5c4ca1fb3

mmiDialogs.c: make dialog_info() static The function in question was first declared as static, then defined as non-static, which should be considered invalid C. Given that this function is not referenced from any other modules and appears to have been intended as static, make it so.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 06 Apr 2021 01:28:52 +0000
parents 4e78acac3d88
children
line wrap: on
line source

#
# TPU drivers makefile
#

# Compilation flags

TPU_DBG := $(DBG) # $(DBG) for debug; see master.mak for definition

TPU_DRIVERS_FLAGS := $(TPU_DBG) -c $(16INST) $(ALGN) -o2 $(CFLAGSTPUDRIVERS)


CFG_LIBS += $(TPU_DRIVERS_LIB)

# Source definitions

SRC_TPU_DRV := $(TPU_DRIVERS_DIR)/source/tpudrv.c $(TPU_DRIVERS_DIR)/source0/tpudrv$(RF_FAM).c
ifeq ($(L1_GPRS), 1)
SRC_TPU_DRV += $(TPU_DRIVERS_DIR)/p_source0/p_tpudr$(RF_FAM).c
endif

# Objects definition

OBJ_TPU_DRV := $(patsubst ../%.c,$(TEMPORARY_FILE_DIR)/%.obj,$(filter %.c,$(SRC_TPU_DRV)))
CFG_OBJS += $(OBJ_TPU_DRV)
CFG_DEPS += $(OBJ_TPU_DRV:.obj=.d)

# Library

$(TPU_DRIVERS_LIB) : $(OBJ_TPU_DRV)
	$(AR470) r $(TPU_DRIVERS_LIB) $(OBJ_TPU_DRV)

# Objects

$(OBJ_TPU_DRV) : $(TEMPORARY_FILE_DIR)/%.obj: ../%.c
	$(COMPILER) $(TPU_DRIVERS_FLAGS) -fr$(@D) $<