home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / input / ime / multiui / makefile < prev    next >
Encoding:
Makefile  |  1997-09-11  |  665 b   |  31 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. APPVER=4.0
  4.  
  5. !include <win32.mak>
  6.  
  7. all: multiui.exe
  8.  
  9. LIBS=imm32.lib comctl32.lib
  10.  
  11.  
  12. # Update the resource if necessary
  13.  
  14. multiui.res: multiui.rc
  15.     $(rc) $(rcflags) $(rcvars) multiui.rc
  16.  
  17.  
  18. # Update the object file if necessary
  19.  
  20. .c.obj:
  21.     $(cc) $(cdebug) $(cflags) $(cvars) $<
  22.  
  23. # Update the executable file if necessary, and if so, add the resource back in.
  24.  
  25. multiui.exe:    dlgs.obj    \
  26.                 data.obj    \
  27.                 multiui.obj \
  28.                 multiwnd.obj    \
  29.                 multiui.res
  30.     $(link) $(linkdebug) $(guiflags) -out:multiui.exe $** $(guilibs) $(LIBS)
  31.