blob: 7a771953cb8f2819cdcbd651c8c791aa7c962ff7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
API_SRCS = \
src/driver/tbnf_amain.c \
src/driver/tbnf_driver_ctx.c \
src/driver/tbnf_map_input.c \
src/driver/tbnf_unit_ctx.c \
src/output/tbnf_output_error.c \
src/skin/tbnf_skin_default.c \
INTERNAL_SRCS = \
src/internal/$(PACKAGE)_dprintf_impl.c \
src/internal/$(PACKAGE)_errinfo_impl.c \
src/internal/$(PACKAGE)_tmpfile_impl.c \
APP_SRCS = \
src/treebnf.c
COMMON_SRCS = $(API_SRCS) $(INTERNAL_SRCS)
|