home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / video / textout / makefile < prev    next >
Makefile  |  1995-11-16  |  1KB  |  53 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !include <win32.mak>
  4.  
  5. TARGETNAME =    txtout32
  6.  
  7. !if "$(CPU)" == "i386" # .syms are useful for Win95
  8. SYM = $(TARGETNAME).sym
  9. !endif
  10.  
  11. all: $(TARGETNAME).dll $(SYM)
  12.  
  13. OBJS=           txtout.obj drvproc.obj
  14.  
  15. OTHERCLOPTS=-nologo -I. -I..\include
  16. OTHERRCOPTS=-DWIN32_LEAN_AND_MEAN -I. -I..\include
  17.  
  18.  
  19. # Update the resource if necessary
  20.  
  21. txtout.res: txtout.rc txtout.h txtout.rcv
  22.     $(rc) -r -DWIN32 $(OTHERRCOPTS) txtout.rc
  23.  
  24.  
  25. # Update the object files if necessary
  26.  
  27. drvproc.obj: drvproc.c txtout.h
  28.     $(cc) $(cdebug) $(cflags) $(cvarsdll) $(OTHERCLOPTS) drvproc.c
  29.  
  30. txtout.obj: txtout.c txtout.h
  31.     $(cc) $(cdebug) $(cflags) $(cvarsdll) $(OTHERCLOPTS) txtout.c
  32.  
  33.  
  34. # Update the executable file if necessary, and if so, add the resource back in.
  35.  
  36. $(TARGETNAME).dll $(TARGETNAME).map:    $(OBJS) txtout.res
  37.     $(implib) -out:$(@B).lib -def:$(TARGETNAME).def $(OBJS)
  38.     $(link) $(linkdebug) $(dllflags) -out:$*.dll \
  39.           $(@B).exp $(OBJS) txtout.res $(guilibsdll) winmm.lib -map:$*.map
  40.     
  41. $(TARGETNAME).sym:    $*.map
  42.     mapsym $*.map
  43.  
  44. clean:
  45.     @if exist $(TARGETNAME).dll del $(TARGETNAME).dll
  46.     @if exist *.obj del *.obj
  47.     @if exist *.map del *.map
  48.     @if exist *.sym del *.sym
  49.     @if exist *.res del *.res
  50.     @if exist *.pdb del *.pdb
  51.     @if exist *.exp del *.exp
  52.     @if exist *.lib del *.lib
  53.