
PROG = fvimsg

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)

.rdf.rco:
	$(DLRC) $<

msgmain.obj:
msgfunc.obj:
msgset.obj:

$(EXE) :	$(LNK) msgmain.obj msgfunc.obj msgset.obj
	$(LINK) @$(LNK)
	dir *.exg

