diff options
author | Juha Vehviläinen <jusu@users.sourceforge.net> | 2002-07-06 17:50:18 +0000 |
---|---|---|
committer | Juha Vehviläinen <jusu@users.sourceforge.net> | 2002-07-06 17:50:18 +0000 |
commit | 4d64e4cd434426234a5c313c151cd79b6afc299e (patch) | |
tree | 5c23dd6acc65b869741d3bb9d33912d74bb7407d /Patches/makefile |
*** empty log message ***svn2git-root
svn path=/trunk/Framestein/; revision=27
Diffstat (limited to 'Patches/makefile')
-rw-r--r-- | Patches/makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Patches/makefile b/Patches/makefile new file mode 100644 index 0000000..55d610f --- /dev/null +++ b/Patches/makefile @@ -0,0 +1,38 @@ +all: vframe vsig vsnapshot vrgb vcolor vframeread vdrawarray arraysize buildstr l2s + +# FLAGS: +# +# note: maximum optimization (/Ox) causes crashes with plugins.. + +F = /DNT /DPD /LD /Gd /GD /Ogitb1 /Gs /I\system\pd\src /I..\Plugins +L = \system\pdt17\bin\pd.lib + +vframe: + cl vframe.c $(F) /link /export:vframe_setup $(L) user32.lib + +vsig: + cl vsig~.c $(F) /link /export:vsig_tilde_setup $(L) + +vsnapshot: + cl vsnapshot~.c $(F) /link /export:vsnapshot_tilde_setup $(L) + +vrgb: + cl vrgb~.c $(F) /link /export:vrgb_tilde_setup $(L) user32.lib + +vcolor: + cl vcolor~.c $(F) /link /export:vcolor_tilde_setup $(L) user32.lib + +vframeread: + cl vframeread~.c $(F) /link /export:vframeread_tilde_setup $(L) + +vdrawarray: + cl vdrawarray.c $(F) /link /export:vdrawarray_setup $(L) + +arraysize: + cl arraysize.c $(F) /link /export:arraysize_setup $(L) + +buildstr: + cl buildstr.c $(F) /link /export:buildstr_setup $(L) + +l2s: + cl l2s.c $(F) /link /export:l2s_setup $(L) |