home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / gdi / complexscript / makefile < prev    next >
Makefile  |  1997-08-21  |  348b  |  15 lines

  1. !include <win32.mak>
  2.  
  3. all: cstext.exe
  4.  
  5. DEFINES=-DUNICODE
  6.  
  7. cstext.res: cstext.rc resource.h
  8.     $(rc) $(rcvars) -r -fo cstext.res cstext.rc
  9.  
  10. cstext.exe: cstext.obj cstext.res
  11.     $(link) $(linkdebug) $(guiflags) -out:cstext.exe cstext.obj cstext.res $(guilibsdll)
  12.  
  13. .c.obj:
  14.   $(cc) $(cdebug) $(cflags) $(DEFINES) $(cvars) $(scall) $*.c
  15.