home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / sdk / win32s / setup / bldcui / makefile < prev    next >
Encoding:
Makefile  |  1995-07-11  |  659 b   |  32 lines

  1. all: mscuistf.dll
  2.  
  3.  
  4. !if "$(DEBUG)" == "yes"
  5. CC = cl -c -nologo -AMw -Gw  -Zpei -W3 -Od -DDEBUG
  6. LNK = cuistfd.lnk
  7. !else
  8. CC = cl -c -nologo -AMw -Gsw2 -Ocegiltw -Zpe -W3
  9. LNK = cuistf.lnk
  10. !endif
  11.  
  12.  
  13. dialogs.res: dialogs.rc dialogs.dlg bldver.h dialogs.h
  14.     rc -r dialogs.rc
  15.  
  16. dlgprocs.obj: cui.h dlgprocs.c dialogs.h
  17.     $(CC) dlgprocs.c
  18.  
  19.  
  20. mscuistf.dll: mscuistf.def mscomstf.lib msuilstf.lib msshlstf.lib \
  21.         dlgprocs.obj ..\iniupd\w32sgra.obj dialogs.res $(LNK)
  22.     link @$(LNK)
  23.     copy   mscuistf.dll mscuistf.nrc
  24.     rc -30 dialogs.res  mscuistf.dll
  25.  
  26.  
  27. clean:
  28.     -del   mscuistf.dll
  29.     -del   mscuistf.nrc
  30.     -del   dlgprocs.obj
  31.     -del   dialogs.res
  32.