diff options
author | midipix <writeonce@midipix.org> | 2024-01-01 15:04:47 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-01-22 03:49:50 +0000 |
commit | 11f3c72e2281a8ef511e2c0819f7042f343f4474 (patch) | |
tree | 8b64ab467fd2c3fdd190c932458f3f5d047451b8 /project | |
parent | 62634282d8511970f0ccdcc41249e7a947134a42 (diff) | |
download | slibtool-11f3c72e2281a8ef511e2c0819f7042f343f4474.tar.bz2 slibtool-11f3c72e2281a8ef511e2c0819f7042f343f4474.tar.xz |
ar mode: initial driver integration and skeleton implementation.
Diffstat (limited to 'project')
-rw-r--r-- | project/common.mk | 2 | ||||
-rw-r--r-- | project/headers.mk | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/project/common.mk b/project/common.mk index 2769569..8fffae8 100644 --- a/project/common.mk +++ b/project/common.mk @@ -6,6 +6,7 @@ API_SRCS = \ src/helper/slbt_dump_machine.c \ src/helper/slbt_map_input.c \ src/helper/slbt_realpath.c \ + src/logic/slbt_exec_ar.c \ src/logic/slbt_exec_compile.c \ src/logic/slbt_exec_ctx.c \ src/logic/slbt_exec_execute.c \ @@ -18,6 +19,7 @@ API_SRCS = \ src/output/slbt_output_fdcwd.c \ src/output/slbt_output_features.c \ src/output/slbt_output_machine.c \ + src/skin/slbt_skin_ar.c \ src/skin/slbt_skin_default.c \ src/skin/slbt_skin_install.c \ src/skin/slbt_skin_uninstall.c \ diff --git a/project/headers.mk b/project/headers.mk index 03bd019..0d22e4c 100644 --- a/project/headers.mk +++ b/project/headers.mk @@ -4,6 +4,7 @@ API_HEADERS = \ INTERNAL_HEADERS = \ $(PROJECT_DIR)/src/internal/argv/argv.h \ + $(PROJECT_DIR)/src/internal/$(PACKAGE)_ar_impl.h \ $(PROJECT_DIR)/src/internal/$(PACKAGE)_dprintf_impl.h \ $(PROJECT_DIR)/src/internal/$(PACKAGE)_driver_impl.h \ $(PROJECT_DIR)/src/internal/$(PACKAGE)_errinfo_impl.h \ |