home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / io / floppy / makefile next >
Makefile  |  1995-02-03  |  248b  |  14 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. TARGETOS=WINNT
  4.  
  5. !include <ntwin32.mak>
  6.  
  7. all: mfmt.exe
  8.  
  9. mfmt.obj: mfmt.c
  10.     $(cc) $(cflags) $(cvars) mfmt.c
  11.  
  12. mfmt.exe: mfmt.obj
  13.     $(link) $(conflags) -out:mfmt.exe mfmt.obj $(conlibs)
  14.