# Makefile fragment for C and assembler transient utiltiesINCLUDED_CUTIL = YES# This makefile provides the following phony targets:## all install debug## It inherits most of its properties from the CApp makefile.CUSTOMLINK = custominclude CApp# You can't currently use the shared C library from a transientUTIL_LIBS := $(filter-out ${CLIB},${APP_LIBS}) ${ANSILIB}CFLAGS += ${C_NO_ZI} ${C_NO_STKCHK}LDFLAGS += -bin${TARGET}: ${APP_OBJS} ${UTIL_LIBS} ${DIRS} ${LD} ${LDFLAGS} -o ${TARGET} ${APP_OBJS} ${UTIL_LIBS} ${SETTYPE} ${TARGET} Utility# EOF