File: make.inc

package info (click to toggle)
mwrap 1.2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 980 kB
  • sloc: cpp: 3,271; ansic: 856; makefile: 252; lex: 233; sh: 2
file content (24 lines) | stat: -rw-r--r-- 574 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# === Compilers ===

# (You don't need flex and bison unless you're planning to modify the
#  grammar -- the default installation comes with the relevant files
#  already in place.)

# Uncomment this line for new-style classdef support
OOFLAG=-DR2008OO

# Uncomment this line for C99 complex support
TESTC99COMPLEX=test_c99_complex

CC := $(if $(CC),$(CC),gcc)
CXX := $(if $(CXX),$(CXX),g++)
MEX=   mex $(OOFLAG)

# Use the following for 64-bit MEX
# MEX=   mex -largeArrayDims $(OOFLAG)

# Use the following for GNU Octave.
MEX=   mkoctfile --mex

FLEX=  flex
BISON= bison