
PROG = client

SRC  = $(PROG).c
OBJ  = $(PROG).obj
EXE  = $(PROG).exg
LNK  = $(PROG).lnk
HCL  = k:\run386 -nocrt k:\hcd386p
OPT1 = -tmpi1 k:\_tmp1 -tmpi2 k:\_tmp2 -tmptp k:\_tmp3
OPT2 = -on Public_var_warnings -off Floating_point
DLRC = k:\dlrc
LINK = k:\run386 -nocrt k:\386linkp

metal : $(EXE)

.c.obj:
	$(HCL) $< $(OPT1) $(OPT2)

climain.obj:
cliset.obj:
clifunc.obj:

$(EXE) :	$(LNK) climain.obj cliset.obj clifunc.obj k:\eindd.lib
	$(LINK) @$(LNK)
	dir *.exg

