home *** CD-ROM | disk | FTP | other *** search
- #
- # Make file for test playing avi files
- #
-
- # ---- Compiler & Linker options ----
- clopts=-c -AL -Gsw -Oas -Zpe
- linkopts= libfmt.lib libcmt.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib winmm.lib console.lib
-
- # ---- Actual build dependencies ----
-
- ALL: testavi.exe
-
- testavi.obj: testavi.for
- fl32 /c /G3 /MT testavi.for
-
- form32.obj: form32.for
- fl32 /c /G3 /MT form32.for
-
- movete32.obj: movete32.for
- fl32 /c /G3 /MT movete32.for
-
- wsurvey.obj: wsurvey.for
- fl32 /c /G3 /MT wsurvey.for
-
- testavi.exe: testavi.obj form32.obj movete32.obj wsurvey.obj
- link $(linkopts) /OUT:testavi.exe /base:0x00010000 /stack:32768,4096 /entry:WinMainCRTStartup /debug:none /subsystem:windows testavi.obj form32.obj movete32.obj wsurvey.obj
-