diff options
author | midipix <writeonce@midipix.org> | 2024-04-29 02:39:30 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-05-07 20:07:25 +0000 |
commit | 02e59c946d51faf976a85610e44d7b0ccf4a6e59 (patch) | |
tree | 660056e01b242e947e27c470b9989c7b1ae6b2b7 /project/common.mk | |
parent | e9098c5591f439cdf8a923c9298b8fc7ff28a3ac (diff) | |
download | treebnf-02e59c946d51faf976a85610e44d7b0ccf4a6e59.tar.bz2 treebnf-02e59c946d51faf976a85610e44d7b0ccf4a6e59.tar.xz |
driver: created program skeleton.
Diffstat (limited to 'project/common.mk')
-rw-r--r-- | project/common.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/project/common.mk b/project/common.mk index 0843a4c..7a77195 100644 --- a/project/common.mk +++ b/project/common.mk @@ -1,6 +1,15 @@ 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 |