aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2019-12-13 15:22:33 +0200
committerTimo Teräs <timo.teras@iki.fi>2020-02-28 23:18:52 +0200
commit9530fbfa044bedf5821ff5ffffb7d4f3994f603f (patch)
treea54a0dcc1eff93429c822fcb89dfaccb73ab6285 /src/Makefile
parentc054fbc11e9beca0d45285c3e1f448c81416c5ce (diff)
downloadapk-tools-v3.0-wip.tar.bz2
apk-tools-v3.0-wip.tar.xz
adb: introduce apk-tools database format, and few appletsv3.0-wip
This is a flat buffers inspired format that allows fast mmaped access to the data with low overhead, signature support and relatively good forward support.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 16b9f4c..a1f3098 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -31,12 +31,19 @@ apk-objs := apk.o \
app_index.o app_fetch.o app_verify.o app_dot.o \
app_audit.o
-libapk.so-objs := common.o database.o package.o commit.o solver.o \
+libapk.so-objs := adb.o adb_trust.o \
+ common.o database.o package.o commit.o solver.o \
version.o blob.o hash.o print.o \
io.o io_url.o io_gunzip.o io_archive.o
libapk.so-libs := libfetch/libfetch.a
+ifeq ($(ADB),y)
+libapk.so-objs += apk_adb.o apk_adbschema.o
+apk-objs += app_adbdump.o app_adbsign.o app_mkndx.o \
+ app_convdb.o app_convndx.o
+endif
+
ifeq ($(TEST),y)
progs-y += apk-test
apk-test-objs := apk-test.o $(filter-out apk.o, $(apk-objs))