home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / samples / sample4 / va.mak < prev    next >
Makefile  |  1997-02-08  |  404b  |  22 lines

  1.  
  2. OBJS=sample4.obj 
  3. LIBS=OOLW3I03.LIB OOLC3I03.LIB OS2386.LIB
  4.  
  5. COMPILE=icc.exe /Tdp /Q /Si /O /G5 /Gm /Gn+ /Gd+ /C
  6. LINK=icc.exe /Tdp /Gm /B"/noe /e:2" 
  7.  
  8. all: sample4.exe
  9.  
  10. .cpp.obj:
  11.     $(COMPILE) %s
  12.  
  13. sample4.exe: $(OBJS) sample4.res 
  14.     $(LINK) /Fe"sample4.exe" $(OBJS) $(LIBS) sample4.def
  15.     rc sample4.res sample4.exe
  16.  
  17.  
  18. sample4.res: sample4.rc
  19.     rc -r sample4.rc
  20.  
  21. sample4.obj: sample4.cpp
  22.