#
# Makefile for binop Application
#
# explenation of macros:
#  --- origin files ----
# PROGRAM :  program name & client '.c' file
# MANAGER :  the server '.c' file (must be different then SERVER!)
# APFFILE :  the aplication '.apf' file
# --- generated files ---
# IDLFILE :  name of .idl file
# CLIENT  :  name for client files (including executable) 
# SERVER  :  name for server files (including executable) 
#
PROGRAM = program
CH_SERVER = chserver
CH_MANAGER = chain
MANAGER = manager
APFFILE = chserver
#
IDLFILE1 = $(CH_MANAGER)
IDLFILE2 = $(MANAGER)
CLIENT  = client
CHSERVER = chserver
SERVER  = server
#
NEED_AUX_FILES =
#
OTHER_CLIENT_OFILES =  
OTHER_SERVER_OFILES = 
OTHER_PROGRAM_FILES =
PROGRAM_OFILES       =  $(PROGRAM).obj $(CH_MANAGER).obj $(MANAGER).obj


!include rules.mak
