home *** CD-ROM | disk | FTP | other *** search
- #
- # Make file for form files
- #
-
- # ---- Compiler & Linker options ----
- linkopts= libf.lib libc.lib kernel32.lib ntdll.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib console.lib
-
- # ---- Actual build dependencies ----
-
- ALL: scrunch_.exe
-
- scrunch_.obj: scrunch_.for
- fl32 /c /G3 scrunch_.for
-
- form32.obj: form32.for
- fl32 /c /G3 form32.for
-
- movete32.obj: movete32.for
- fl32 /c /G3 movete32.for
-
- scrunch_.exe: scrunch_.obj form32.obj movete32.obj
- link $(linkopts) /OUT:scrunch_.exe /base:0x00010000 /stack:32768,4096 /entry:WinMainCRTStartup /debug:none /subsystem:windows scrunch_.obj form32.obj movete32.obj
-