home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Hutch / DOWNLOAD / Icztutes.exe / TUTE09 / MAKEFILE < prev    next >
Encoding:
Text File  |  1999-05-17  |  244 b   |  8 lines

  1. NAME=controls
  2. $(NAME).exe: $(NAME).obj $(NAME).res
  3.         Link /SUBSYSTEM:WINDOWS /LIBPATH:c:\masm32\lib $(NAME).obj $(NAME).res
  4. $(NAME).res: $(NAME).rc
  5.         rc $(NAME).rc
  6. $(NAME).obj: $(NAME).asm
  7.         ml /c /coff /Cp $(NAME).asm
  8.