home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / win32s.zip / MAKEFILE < prev    next >
Text File  |  1994-04-30  |  613b  |  27 lines

  1. NODEBUG = 1
  2. !include <ntwin32.mak>
  3.  
  4. all: whello.exe
  5.  
  6. OBJS  = whello.OBJ 
  7.  
  8. mycvarsdll = -Os $(cvarsdll) -Os -Gf /G3
  9.  
  10. WHELLO_DEP = 
  11.  
  12.  
  13. WHELLO.OBJ:   WHELLO.CPP $(WHELLO_DEP)
  14.     $(cc) $(cflags) $(cdebug) $(mycvarsdll) WHELLO.CPP
  15.  
  16. res.RES:   WHELLO.RC $(WHELLO_RCDEP)
  17.     $(rc) -dWIN32 -r -fo res.tmp WHELLO.rc
  18.     $(cvtres) -$(CPU) res.tmp -o res.res
  19.     del res.tmp
  20.  
  21.  
  22. WHELLO.exe: $(OBJS) WHELLO.def res.res
  23.     $(cvtobj) $(cvtdebug) *.obj
  24.     $(link) $(linkdebug) $(guiflags) -out:WHELLO.exe \
  25.      $(OBJS) res.res $(guilibsdll) shell32.lib mpr.lib \
  26.                winmm.lib advapi32.lib
  27.