home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / os2 / clock / makefile < prev    next >
Encoding:
Makefile  |  1993-09-30  |  1.8 KB  |  90 lines

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