CC = cl
CFLAGS = -c -Gsw -Od -Zipe -AS -DPCMAG

APP = pcmove
OBJS = $(APP).obj fileopen.obj

# Inference rules for C
.c.obj :
	$(CC) $(CFLAGS) $*.c


fileopen.obj: fileopen.c

pcmove.obj  : pcmove.c


$(APP).res: $(APP).rc $(APP).h
    rc -r $(APP).rc

$(APP).exe: $(OBJS) $(APP).def $(APP).res
    d:\msc6\link /NOE /NOD $(OBJS),$(APP),nul,slibcew libw, $(APP).def
    rc $(APP).res

$(APP).exe: $(APP).res
    rc $(APP).res
