blob: 8ab429c8ea1c9cc4fd9bc55606d841f52b55c289 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
include .defs.mk
TYPE = *
BIN_TARGET = tpcb
SOURCES = ttTime.c tpcb.cpp
CCFLAGS_LOC += \
-I$(NDB_TOP)/include \
-I$(NDB_TOP)/include/ndbapi \
-I$(NDB_TOP)/include/portlib \
-I$(NDB_TOP)/include/util \
-I$(NDB_TOP)/test/include \
-I/usr/local/include
CCFLAGS_WARNINGS += -Wno-unused -Wno-sign-compare -Wformat
CCFLAGS_TOP += -DndbODBC
BIN_TARGET_LIBS = NDB_API_pic NDB_ODBC_pic NDBT
ifeq ($(NDB_OS),SOLARIS)
BIN_TARGET_LIBS += dmallocthcxx
CCFLAGS_TOP += -DDMALLOC
endif
include $(NDB_TOP)/Epilogue.mk
$(BIN_DIR)$(BIN_TARGET): Makefile
|