home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / bufop.zip / SAMPLE.MAK < prev    next >
Text File  |  1993-09-11  |  707b  |  39 lines

  1. # IBM Developer's Workframe/2 Make File Creation run at 14:25:13 on 09/06/93
  2.  
  3. # Make File Creation run in directory:
  4. #   D:\PRECOMP\SAMPLE;
  5.  
  6. .SUFFIXES:
  7.  
  8. .SUFFIXES: .c .cpp .cxx .sqc
  9.  
  10. SAMPLE.EXE:  \
  11.   testpc.OBJ \
  12.   tsta.OBJ \
  13.   sample.mak
  14.    ICC.EXE @<<
  15. /Tdp /Ti /Gm /Gd  
  16.  /B" /de"
  17.  /Fe"SAMPLE.EXE" sql_dyn.lib dde4cci.lib dde4mbsi.lib 
  18. testpc.OBJ 
  19. tsta.OBJ
  20. <<
  21.  
  22. {.}.c.obj:
  23.    ICC.EXE /Ti /Gm /Gd /C   .\$*.c
  24.  
  25. {.}.cpp.obj:
  26.    ICC.EXE /Ti /Gm /Gd /C   .\$*.cpp
  27.  
  28. {.}.cxx.obj:
  29.    ICC.EXE /Ti /Gm /Gd /C   .\$*.cxx
  30.  
  31. #
  32. #  change the sqc file to cpp
  33. #  assume the name of the database is sampledb
  34. #  
  35.  
  36. {.}.sqc.cpp:
  37.    bufop tsta.sqc  test /b=sampledb.bnd
  38. !include sample.DEP
  39.