home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / fortran / mslang / avi / testavi < prev   
Encoding:
Text File  |  1994-04-12  |  784 b   |  27 lines

  1. #
  2. #  Make file for test playing avi files
  3. #
  4.  
  5. # ---- Compiler & Linker options ----
  6. clopts=-c -AL -Gsw -Oas -Zpe
  7. linkopts=  libfmt.lib libcmt.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib winmm.lib console.lib 
  8.  
  9. # ---- Actual build dependencies ----
  10.  
  11. ALL: testavi.exe
  12.  
  13. testavi.obj: testavi.for
  14.     fl32 /c /G3 /MT testavi.for
  15.  
  16. form32.obj: form32.for
  17.     fl32 /c /G3 /MT form32.for
  18.  
  19. movete32.obj: movete32.for
  20.     fl32 /c /G3 /MT movete32.for
  21.  
  22. wsurvey.obj: wsurvey.for
  23.     fl32 /c /G3 /MT wsurvey.for
  24.  
  25. testavi.exe: testavi.obj form32.obj movete32.obj wsurvey.obj
  26.     link $(linkopts)  /OUT:testavi.exe  /base:0x00010000 /stack:32768,4096 /entry:WinMainCRTStartup /debug:none /subsystem:windows testavi.obj form32.obj movete32.obj wsurvey.obj
  27.