home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / frlnch.zip / source.frl / frl.mak < prev    next >
Text File  |  1995-03-12  |  1KB  |  46 lines

  1. # Makefile for FreeLaunch 1.2
  2. # (c) Thomas Blummer 1995
  3. #
  4.  
  5. # destination old creates the Tester and the runtime Moduls
  6. # with and without Info-Unzip
  7. # The executables frltest.exe frlrun.exe and frlsrun.exe are
  8. # runnable on every OS/2 Versions >= 2.0 including Warp 3.0
  9. old : frltest.exe frlrun.exe frlsrun.exe
  10.  
  11. all : old warp dll
  12.  
  13. # executables created by this destination frlwrun.exe frlswrun.exe
  14. # are runnable ONLY on OS/2 Warp 3.0 (and hopefully above)
  15. warp : frlwrun.exe frlswrun.exe
  16.  
  17. dll : frldll.dll
  18.  
  19. frldll.dll : frldll.c frldll.def
  20.     icc /Q /Gm /Ge- frldll.c /B/BATCH frldll.def
  21.  
  22. frltest.exe : frl.rc dialog.dlg resource.h dialog.h
  23.     rc -x frl.rc $@
  24.  
  25. frlrun.exe : install.res
  26.     rc -x $? $@ >nul
  27.  
  28. frlsrun.exe : install.res
  29.     rc -x $? $@ >nul
  30.  
  31. # for Warp I am using the new -x2 flag of the resource compiler
  32. # distributed in warp. It does a better compression than the older
  33. # versions. 
  34. frlwrun.exe : install.res
  35.     rc -x2 $? $@ >nul
  36.  
  37. frlswrun.exe : install.res
  38.     rc -x2 $? $@ >nul
  39.  
  40. install.res : install.rc frl.rc dialog.dlg resource.h dialog.h
  41.     rc -r install.rc >nul
  42.  
  43. install.rc : install.scr
  44.     frlcomp
  45.  
  46.