home *** CD-ROM | disk | FTP | other *** search
/ BUG 4 / BUGCD1997_05.BIN / aplic / clip4win / clip4win.exe / C4W30E.HUF / SOURCE / ADDRC.BAT < prev    next >
DOS Batch File  |  1993-06-04  |  379b  |  14 lines

  1. echo off
  2. rem
  3. rem  Simple batch file to add resources to a given .EXE file.  This should
  4. rem  be run after you have linked your .EXE.  This batch file assumes
  5. rem  your .RC and .EXE file have the same filename.
  6. rem
  7. rem  This runs rc twice: to compile the .RC file to a .RES file, and
  8. rem  then add it to the .EXE.
  9. rem
  10. rem  Example:  addrc myapp
  11. rem
  12. rc -r %1
  13. rc -k %1
  14.