blob: ebde75bf3ec577a6f23d08637c80f4dbc75e76b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include .defs.mk
LIB_DIRS := \
portlib \
debugger \
util \
logger
ifneq ($(USE_EDITLINE), N)
LIB_DIRS += editline
endif
DIRS := transporter mgmcommon
include $(NDB_TOP)/Epilogue.mk
|