diff options
author | midipix <writeonce@midipix.org> | 2025-06-19 07:01:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2025-06-19 07:11:38 +0000 |
commit | b8ba228dca6985d629c67b3f7751b5040a76c6b2 (patch) | |
tree | 537fa4ef5f1b7c7f265e17651fefd1b7ffa3243a /src/internal | |
parent | 339b39c87643eaf20adf0a1c3755906d52408754 (diff) | |
download | perk-b8ba228dca6985d629c67b3f7751b5040a76c6b2.tar.bz2 perk-b8ba228dca6985d629c67b3f7751b5040a76c6b2.tar.xz |
driver: added --cmd=ranlib support, pe_cmd_ranlib() stub, and perk-ranlib symlink.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/perk_driver_impl.h | 1 | ||||
-rw-r--r-- | src/internal/perk_synopsis_impl.h | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/internal/perk_driver_impl.h b/src/internal/perk_driver_impl.h index 44115c7..b1062ac 100644 --- a/src/internal/perk_driver_impl.h +++ b/src/internal/perk_driver_impl.h @@ -18,6 +18,7 @@ extern const struct argv_option pe_ar_options[]; extern const struct argv_option pe_nm_options[]; extern const struct argv_option pe_size_options[]; extern const struct argv_option pe_strip_options[]; +extern const struct argv_option pe_ranlib_options[]; enum app_tags { TAG_HELP, diff --git a/src/internal/perk_synopsis_impl.h b/src/internal/perk_synopsis_impl.h index 2806881..02c7e5d 100644 --- a/src/internal/perk_synopsis_impl.h +++ b/src/internal/perk_synopsis_impl.h @@ -57,6 +57,14 @@ +#define PERK_RANLIB_CMD_SYNOPSIS \ + "%s — PE/COFF Archive Indexer\n\n" \ + "Synopsis:\n" \ + " %s [-V] [-D|-U] [-t] <file> ...\n\n" \ + "Options:\n" + + + #define PERK_AR_CMD_SYNOPSIS \ "%s — the PE/COFF Resource Kit Archiver\n\n" \ "Synopsis:\n" \ |