Vladimir Rudomanov wrote:I Study the examples for xHARBOUR. The Problems with assembly greater project. Is absent the examples buildx.bat for project , where several files.
Vladimir
This is a working sample
# Paths for dependent files ##################################################
.path.prg = $(APP_PRG_DIR)
.path.c = $(APP_OBJ_DIR) # add reference to C intermediate code
.path.obj = $(APP_OBJ_DIR)
# Application PRG files (your PRG files go here) #############################
APP_RC_LIST = \
CBATIMAN.rc \
CBATI.rc \
CBATICOM.rc \
CBATISAV.rc \
CBATIVEH.rc
APP_PRG_LIST = \
CBATIWIN.prg \
CBATITEC.prg \
CBATIRTE.prg \
COMPTOIR.prg
# Contruction of the rest dependency lists ###################################
APP_PRGS = $(APP_PRG_LIST)
APP_OBJS = $(APP_PRG_LIST:.prg=.obj)
APP_RC = $(APP_RC_LIST)
APP_RES = $(APP_RC_LIST:.rc=.res)
......