home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM User 1995 January / CDuser6Jan95.iso / DYNASTY / WING / TIMEWING.M3_ / TIMEWING.M3
Text File  |  1994-06-24  |  673b  |  34 lines

  1.  
  2. CC  = cl386 -c -W3 -Zi -Oxwt -DSTRICT
  3. NAME= timewing
  4. DEF =-DDEBUG -DSTRICT
  5. RC  = rc
  6. LINK= link32 -map -debug:full -debugtype:cv -out:$(NAME).exe -subsystem:windows
  7.  
  8. OBJ  = $(NAME).obj dib.obj
  9.  
  10. LIBS = gdi32.lib user32.lib comdlg32.lib wing32.lib winmm.lib
  11.  
  12. .cpp.obj:
  13.         $(CC) /Fo$*.obj $< 
  14.  
  15. goal: $(NAME).exe
  16.  
  17. $(NAME).exe: $(OBJ) $(NAME).res $(NAME).def timewing.m32
  18.         $(LINK) $(OBJ) $(LIBS) $(NAME).res
  19.  
  20. $(NAME).res: $(NAME).rc $(NAME).ico
  21.         $(RC) -r $(NAME).rc
  22.  
  23. clean:
  24.         del $(NAME).exe
  25.         del *.res
  26.         del *.err
  27.         del *.obj
  28.         del *.map
  29.         del *.sym
  30.         del *.cod
  31.         del *.pdb
  32.  
  33.  
  34.