home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / ipc / ddeml / ddemo / makefile < prev   
Makefile  |  1993-06-17  |  386b  |  16 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !include <ntwin32.mak>
  4.  
  5. all: ddemo.exe
  6.  
  7. # Update the object file if necessary
  8.  
  9. ddemo.obj: ddemo.c 
  10.     $(cc) $(cflags) $(cvars) $(cdebug) ddemo.c
  11.  
  12. # Update the executable file if necessary, and if so, add the resource back in.
  13.  
  14. ddemo.exe: ddemo.obj
  15.     $(link) $(linkdebug) $(guiflags) -out:ddemo.exe ddemo.obj $(guilibs)
  16.