blob: eab61ebd3596b87ca0dbc168edb13f967d9745d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
include .defs.mk
DIRS += driver
ifneq ($(findstring odbc, $(wildcard /usr/lib/libodbc.so)),)
DIRS += dm-unixodbc
endif
ifneq ($(findstring $(NDB_OS), SOLARIS),)
DIRS += dm-iodbc
endif
include ${NDB_TOP}/Epilogue.mk
|