home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / ntcode / dyndlg / makefile < prev   
Encoding:
Makefile  |  1995-05-19  |  414 b   |  19 lines

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