home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / windows / winwhere.zip / WINWHERE < prev    next >
Text File  |  1990-11-22  |  404b  |  24 lines

  1. CC = cl
  2. CFLAGS = -c -Gsw -Od -Zpe -AS
  3.  
  4. APP = winwhere
  5. OBJS = $(APP).obj
  6.  
  7. # Inference rules for C
  8. .c.obj :
  9.     $(CC) $(CFLAGS) $*.c
  10.  
  11.  
  12. $(APP).obj  : $(APP).c
  13.  
  14.  
  15. $(APP).res: $(APP).rc $(APP).h
  16.     rc -r $(APP).rc
  17.  
  18. $(APP).exe: $(OBJS) $(APP).def $(APP).res
  19.     d:\msc6\link /NOE /NOD $(OBJS),$(APP),nul,slibcew libw, $(APP).def
  20.     rc $(APP).res
  21.  
  22. $(APP).exe: $(APP).res
  23.     rc $(APP).res
  24.