home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / winnt / dlgedit / makefile < prev    next >
Makefile  |  1996-01-07  |  1KB  |  44 lines

  1. APPVER=4.0
  2. TARGETOS = WINNT
  3.  
  4. !include <win32.mak>
  5.  
  6. all: dlgedit.exe
  7.  
  8. # Update the resources if necessary
  9.  
  10. dlgedit.res: dlgedit.rc dlgedit.h
  11.     $(rc) $(rcflags) $(rcvars) dlgedit.rc
  12.  
  13. dlgedit.exe: addctrl.obj  \
  14.         ctrlproc.obj \
  15.         custcntl.obj \
  16.         dialogs.obj  \
  17.         dlgedit.obj  \
  18.         drag.obj     \
  19.         file.obj     \
  20.         globals.obj  \
  21.         groupdlg.obj \
  22.         include.obj  \
  23.         menu.obj     \
  24.         reslist.obj  \
  25.         restodlg.obj \
  26.         resutil.obj  \
  27.         rwdlg.obj    \
  28.         rwinc.obj    \
  29.         rwres.obj    \
  30.         select.obj   \
  31.         status.obj   \
  32.         styles.obj   \
  33.         toolbox.obj  \
  34.         util.obj     \
  35.         viewinc.obj  \
  36.         dlgedit.res
  37.   $(link) $(linkdebug) $(guiflags) -out:$*.exe $** $(guilibs)
  38. !IF ("$(TARGETLANG)" == "LANG_JAPANESE") && ("$(OS)" == "Windows_NT")
  39.     rlman -p 932 -n 17 1 -a $*.exe $*.tok $*.exe
  40. !ENDIF
  41.  
  42. .c.obj:
  43.   $(cc) $(cdebug) $(cflags) $(cvars) -DUNICODE $*.c
  44.