sqlite api fix
[sxnasal.git] / Jamrules
blob878560ff52d4924b29996909b7a0ec998d77f5a2
1 if ! $(THIS_IS_K8JAM) { Exit "You need k8jam to build this: https://repo.or.cz/k8jam.git" ; }
2 if ! [ HasRule CompareVersions ] {
3   Exit "Your k8jam version is obsolete; get the new one at: https://repo.or.cz/k8jam.git" ;
5 if [ CompareVersions $(K8_JAMVERSION) : '2.7.0' ] == '-1' {
6   Exit "Your k8jam version is obsolete; get the new one at: https://repo.or.cz/k8jam.git" ;
9 softinclude $(TOP)/Jamrules.local.preconfig ;
10 softinclude $(TOP)/Jamrules.configure ;
11 softinclude $(TOP)/Jamrules.local.pre ;
13 set-profile ;
14 set-target-locations ;
16 # export symbols, to allow loading .so
17 LINKFLAGS.all += -Wl,--export-dynamic ;
19 softinclude $(TOP)/Jamrules.local ;
20 softinclude $(TOP)/Jamrules.libs ;
21 softinclude $(TOP)/Jamrules.install ;
24 # shut the fuck up, g-shit-cc, i don't care what you think about my coding style
25 CFLAGS.all += -Wno-misleading-indentation ;
27 # fix some warnings
28 CFLAGS.all += -Wtrampolines ;
29 CFLAGS.all += -Wno-unused-parameter ;
30 CFLAGS.all += -Wno-missing-field-initializers ;