diff options
author | midipix <writeonce@midipix.org> | 2016-04-09 11:14:27 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-04-09 19:01:07 -0400 |
commit | 258073e76ddf4030ff9d6385caf6af7d0c609a3f (patch) | |
tree | 562ec12e39eb9beb79a2472bec6ce98c208420e0 /project | |
parent | dc77cbe66029a7e925c1d7299be7dfc04d4c263e (diff) | |
download | slibtool-258073e76ddf4030ff9d6385caf6af7d0c609a3f.tar.bz2 slibtool-258073e76ddf4030ff9d6385caf6af7d0c609a3f.tar.xz |
install mode: initial implementation and integration.
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 06b9292..719b6a2 100644 --- a/project/common.mk +++ b/project/common.mk @@ -4,11 +4,13 @@ COMMON_SRCS = \ src/driver/slbt_unit_ctx.c \ src/logic/slbt_exec_compile.c \ src/logic/slbt_exec_ctx.c \ + src/logic/slbt_exec_install.c \ src/logic/slbt_exec_link.c \ src/logic/slbt_map_input.c \ src/output/slbt_output_config.c \ src/output/slbt_output_exec.c \ src/skin/slbt_skin_default.c \ + src/skin/slbt_skin_install.c \ APP_SRCS = \ src/slibtool.c diff --git a/project/headers.mk b/project/headers.mk index 803dbc7..7b036f6 100644 --- a/project/headers.mk +++ b/project/headers.mk @@ -5,6 +5,7 @@ API_HEADERS = \ INTERNAL_HEADERS = \ $(PROJECT_DIR)/src/internal/argv/argv.h \ $(PROJECT_DIR)/src/internal/$(PACKAGE)_driver_impl.h \ + $(PROJECT_DIR)/src/internal/$(PACKAGE)_install_impl.h \ $(PROJECT_DIR)/src/internal/$(PACKAGE)_spawn_impl.h \ $(PROJECT_DIR)/src/internal/$(PACKAGE)_symlink_impl.h \ |