File: makefile_windows_r2007a.m

package info (click to toggle)
psychtoolbox-3 3.0.11.20140816.dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 77,468 kB
  • ctags: 17,316
  • sloc: ansic: 95,595; cpp: 11,170; objc: 4,026; sh: 1,844; python: 383; php: 312; makefile: 191; java: 113
file content (24 lines) | stat: -rwxr-xr-x 1,259 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
function makefile_windows_r2007a
% Build moglcore on MS-Windows for Matlab 32/64 Bit:
%
% Requires freeglut import libraries and header files which are bundled
% inside the PsychSourceGL\Cohorts\freeglut folder of the PTB source distro.
%
% Requires freeglut dll's included within Psychtoolbox distribution.
%

if ~IsWin
    error('This makefile is only for building moglcore on MS-Windows!');
end

if IsWin(1)
    % 64-Bit build:
    mex -v -outdir . -output moglcore -largeArrayDims -DWINR2007a -DWINDOWS -DGLEW_STATIC -I..\..\..\..\PsychSourceGL\Cohorts\freeglut\include -L..\..\..\..\PsychSourceGL\Cohorts\freeglut\lib\x64 -I. windowhacks.c gl_auto.c gl_manual.c mogl_rebinder.c moglcore.c glew.c ftglesGlue.c user32.lib gdi32.lib advapi32.lib glu32.lib opengl32.lib -lfreeglut
else
    % 32-Bit build:
    mex -v -outdir . -output moglcore -largeArrayDims -DWINR2007a -DWINDOWS -DGLEW_STATIC -I..\..\..\..\PsychSourceGL\Cohorts\freeglut\include -L..\..\..\..\PsychSourceGL\Cohorts\freeglut\lib -I. windowhacks.c gl_auto.c gl_manual.c mogl_rebinder.c moglcore.c glew.c ftglesGlue.c user32.lib gdi32.lib advapi32.lib glu32.lib opengl32.lib -lfreeglut
end

movefile(['moglcore.' mexext], [PsychtoolboxRoot 'PsychBasic\MatlabWindowsFilesR2007a\']);

return;