home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / os2 / memsz200.zip / MAKEFILE < prev    next >
Text File  |  1993-06-29  |  2KB  |  86 lines

  1. All: Memsize.exe Catala Deutsch English Español
  2.  
  3. Memsize.exe: $*.obj $*.res $*.def About.obj Debug.obj Profile.obj Settimer.obj Support.obj Cdlist.obj
  4.   link386 /NOLOGO /MAP $*+About+Debug+Profile+Settimer+Support+Cdlist,$*,$*,libgpp+libc+os2386+os2286,$*;
  5.   rc $*.res
  6.  
  7. Memsize.res: $*.rc $*.ico
  8.   rc -r $*.rc
  9.  
  10. Memsize.obj: $*.cc $*.h About.h Debug.h Support.h Settimer.h
  11.   gcc -c -O $*.cc
  12.  
  13. About.obj: $*.cc $*.h
  14.   gcc -c -O $*.cc
  15.  
  16. Debug.obj: $*.cc $*.h
  17.   gcc -c -O $*.cc
  18.  
  19. Profile.obj: $*.cc $*.h Debug.h
  20.   gcc -c -O $*.cc
  21.  
  22. Support.obj: $*.cc $*.h Debug.h
  23.   gcc -c -O $*.cc
  24.  
  25. Settimer.obj: $*.cc $*.h
  26.   gcc -c -O $*.cc
  27.  
  28. Cdlist.obj : $*.s
  29.   gcc -c -O $*.s
  30.  
  31. Cdlist.s : Memsize.obj
  32.   collect -o Cdlist.s Memsize.obj
  33.  
  34. Catala: $*.dll $*.hlp
  35.  
  36. Catala.hlp: $*.ipf Memsize.bmp
  37.   ipfc /x /COU=003 /LAN=ESP $*.ipf
  38.  
  39. Catala.dll: $*.def $*.res dll.obj
  40.   link dll, $*.dll /align:16, nul,, $* ;
  41.   rc $*.res $*.dll
  42.  
  43. Catala.res: $*.rc
  44.   rc -r $*
  45.  
  46. Deutsch: $*.dll $*.hlp
  47.  
  48. Deutsch.hlp: $*.ipf Memsize.bmp
  49.   ipfc /x /COU=049 /LAN=DEU $*.ipf
  50.  
  51. Deutsch.dll: $*.def $*.res dll.obj
  52.   link dll, $*.dll /align:16, nul,, $* ;
  53.   rc $*.res $*.dll
  54.  
  55. Deutsch.res: $*.rc
  56.   rc -r $*
  57.  
  58. English: $*.dll $*.hlp
  59.  
  60. English.hlp: $*.ipf Memsize.bmp
  61.   ipfc /x /COU=001 /LAN=ENU $*.ipf
  62.  
  63. English.dll: $*.def $*.res dll.obj
  64.   link dll, $*.dll /align:16, nul,, $* ;
  65.   rc $*.res $*.dll
  66.  
  67. English.res: $*.rc
  68.   rc -r $*
  69.  
  70. Español: $*.dll $*.hlp
  71.  
  72. Español.hlp: $*.ipf Memsize.bmp
  73.   ipfc /x /COU=003 /LAN=ESP $*.ipf
  74.  
  75. Español.dll: $*.def $*.res dll.obj
  76.   link dll, $*.dll /align:16, nul,, $* ;
  77.   rc $*.res $*.dll
  78.  
  79. Español.res: $*.rc
  80.   rc -r $*
  81.  
  82. dll.obj: $*.asm
  83.   masm $* ;
  84.  
  85.  
  86.