diff options
author | midipix <writeonce@midipix.org> | 2025-05-30 22:16:01 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2025-05-30 23:44:08 +0000 |
commit | 9e2275f12aea1d90c206ea597f42cdd82f9a38ae (patch) | |
tree | 51c582d37514aa079818f8f845353910a5b08cd5 /project/common.mk | |
parent | 77fbc135fe043aa259c264ba60088491d1a4bbfc (diff) | |
download | perk-9e2275f12aea1d90c206ea597f42cdd82f9a38ae.tar.bz2 perk-9e2275f12aea1d90c206ea597f42cdd82f9a38ae.tar.xz |
library api: _hexdump_ (header and section pretty printing) namespace overhaul.
Diffstat (limited to 'project/common.mk')
-rw-r--r-- | project/common.mk | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/project/common.mk b/project/common.mk index 7d9b68f..24ecfad 100644 --- a/project/common.mk +++ b/project/common.mk @@ -8,13 +8,13 @@ API_SRCS = \ src/driver/pe_amain.c \ src/driver/pe_driver_ctx.c \ src/driver/pe_unit_ctx.c \ - src/hdrdump/pe_hdrdump_export_hdr.c \ - src/hdrdump/pe_hdrdump_image_dos_hdr.c \ - src/hdrdump/pe_hdrdump_import_tbl.c \ - src/hdrdump/pe_hdrdump_coff_image_hdr.c \ - src/hdrdump/pe_hdrdump_coff_object_hdr.c \ - src/hdrdump/pe_hdrdump_coff_opt_hdr.c \ - src/hdrdump/pe_hdrdump_sec_tbl.c \ + src/hexdump/pe_hexdump_export_hdr.c \ + src/hexdump/pe_hexdump_image_dos_hdr.c \ + src/hexdump/pe_hexdump_import_tbl.c \ + src/hexdump/pe_hexdump_coff_image_hdr.c \ + src/hexdump/pe_hexdump_coff_object_hdr.c \ + src/hexdump/pe_hexdump_coff_opt_hdr.c \ + src/hexdump/pe_hexdump_sec_tbl.c \ src/info/pe_get_image_abi.c \ src/info/pe_get_image_framework.c \ src/info/pe_get_image_subsystem.c \ @@ -42,7 +42,7 @@ API_SRCS = \ INTERNAL_SRCS = \ src/internal/$(PACKAGE)_dprintf_impl.c \ src/internal/$(PACKAGE)_errinfo_impl.c \ - src/internal/$(PACKAGE)_hdrdump_impl.c \ + src/internal/$(PACKAGE)_hexdump_impl.c \ APP_SRCS = \ src/perk.c |