using kprintf to output debug, which may be redirected to serial, is not a good idea...
[AROS-Contrib.git] / development / build / tolua / config_posix.py
blob2bb696ce4ca7122c07e882bfe2c37beb4b69ea95
2 ## This is the POSIX configuration file (will be included for cygwin, mingw
3 # and possibly mac OSX and BSDs)
4 # use 'scons -h' to see the list of command line options available
6 # flags for the compiler
7 #CCFLAGS = []
8 CCFLAGS = ['-O2', '-ansi', '-Wall']
10 # this is the default directory for installation. Files will be installed on
11 # <prefix>/bin, <prefix>/lib and <prefix>/include when you run 'scons install'
13 # You can also specify this directory on the command line with the 'prefix'
14 # option
16 prefix = '/usr/local'
18 # libraries
19 LIBS = ['lua', 'lualib', 'm']
23 import os