home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR24 / MEMSZ211.ZIP / MAKEFILE < prev    next >
Text File  |  1993-09-20  |  2KB  |  96 lines

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