home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / NEWPRJ.ZIP / NEWPRJ.DOC < prev    next >
Text File  |  1990-03-15  |  2KB  |  50 lines

  1. DOCUMENTATION FOR NEWPRJ.EXE
  2.  
  3. newprj was created by Anthony Andersen. Compuserve ID 72037,2474.
  4. I wrote this to simplify the tedious task of creating a new set of
  5. OS/2 PM project files. If it helps anyone else, I'm happy.
  6.  
  7. You need an OS/2 toolkit (or SKD or SoftSet) and MS C 5.1 or higher to 
  8. compile the new project. I have tested it with versions 1.1 and 1.2.
  9.  
  10. The source code and the executable file have been released into the 
  11. public domain. Any comments about newprj are welcome.
  12.  
  13. newprj creates a new OS/2 PM project. It's a pretty simple program. You run 
  14. it by typing:
  15.  
  16.     newprj projname
  17.  
  18. where projname is the name of the new project. 
  19.  
  20. newprj creates eight files: 
  21.     .MAK - MS MAKE file, 
  22.     .C   - C source file, 
  23.     .H   - C header file,
  24.     .LNK - linker command file, 
  25.     .DEF - linker definition file, 
  26.     .RC  - resource compiler file.
  27.     .ICO - icon file, and 
  28.     .DLG - resource compiler dialog file, 
  29.  
  30. this is a listing of the files created by typing:
  31.  
  32.     newprj slash
  33.  
  34. SLASH    MAK      284   3-15-90   1:28a
  35. SLASH    C       5509   3-15-90   1:28a
  36. SLASH    DEF      159   3-15-90   1:28a
  37. SLASH    LNK       68   3-15-90   1:28a
  38. SLASH    H        684   3-15-90   1:28a
  39. SLASH    DLG      757   3-15-90   1:28a
  40. SLASH    ICO      288   3-15-90   1:28a
  41. SLASH    RC      1469   3-15-90   1:28a
  42.  
  43.  
  44. Once you've run newprj, you can compile the new project by typing:
  45.  
  46.     make projname.mak
  47.  
  48. This will create an EXE file which will run (although it really doesn't
  49. do anything). 
  50.