home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / fontedit / makefile < prev    next >
Makefile  |  1995-11-15  |  525b  |  18 lines

  1. !include <win32.mak>
  2.  
  3. all: fontedit.exe
  4.  
  5. .c.obj:
  6.     $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  7.  
  8. fontedit.res: fontedit.rc fontedit.h
  9.     $(rc) -r fontedit.rc
  10.  
  11. fontedit.exe: fontedit.res \
  12.               FONTCVT.obj FONTDLG.OBJ FONTEDIT.OBJ \
  13.               FONTHEAD.OBJ TYPECVT.OBJ FONTLOAD.OBJ FONTCHAR.OBJ
  14.   $(link) $(linkdebug) $(guiflags) -machine:$(CPU) -out:$*.exe $** $(guilibs)
  15. !IF ("$(TARGETLANG)" == "LANG_JAPANESE") && ("$(OS)" == "Windows_NT")
  16.     rlman -p 932 -n 17 1 -a $*.exe $*.tok $*.exe
  17. !ENDIF
  18.