diff options
-rw-r--r-- | src/Makefile | 10 | ||||
-rw-r--r-- | src/app_add.c (renamed from src/add.c) | 2 | ||||
-rw-r--r-- | src/app_audit.c (renamed from src/audit.c) | 2 | ||||
-rw-r--r-- | src/app_cache.c (renamed from src/cache.c) | 2 | ||||
-rw-r--r-- | src/app_del.c (renamed from src/del.c) | 2 | ||||
-rw-r--r-- | src/app_dot.c (renamed from src/dot.c) | 2 | ||||
-rw-r--r-- | src/app_fetch.c (renamed from src/fetch.c) | 2 | ||||
-rw-r--r-- | src/app_fix.c (renamed from src/fix.c) | 2 | ||||
-rw-r--r-- | src/app_index.c (renamed from src/index.c) | 2 | ||||
-rw-r--r-- | src/app_info.c (renamed from src/info.c) | 2 | ||||
-rw-r--r-- | src/app_list.c (renamed from src/list.c) | 2 | ||||
-rw-r--r-- | src/app_manifest.c (renamed from src/manifest.c) | 2 | ||||
-rw-r--r-- | src/app_policy.c (renamed from src/policy.c) | 2 | ||||
-rw-r--r-- | src/app_search.c (renamed from src/search.c) | 2 | ||||
-rw-r--r-- | src/app_stats.c (renamed from src/stats.c) | 2 | ||||
-rw-r--r-- | src/app_update.c (renamed from src/update.c) | 2 | ||||
-rw-r--r-- | src/app_upgrade.c (renamed from src/upgrade.c) | 2 | ||||
-rw-r--r-- | src/app_verify.c (renamed from src/verify.c) | 2 | ||||
-rw-r--r-- | src/app_version.c (renamed from src/ver.c) | 2 |
19 files changed, 25 insertions, 21 deletions
diff --git a/src/Makefile b/src/Makefile index 52ea1b2..36242d7 100644 --- a/src/Makefile +++ b/src/Makefile @@ -23,9 +23,13 @@ install-LUA_LIB-y := $(INSTALLDIR) $(DESTDIR)$(LUA_LIBDIR) && \ endif progs-y += apk -apk-objs := apk.o add.o del.o fix.o update.o info.o list.o \ - search.o upgrade.o cache.o ver.o index.o fetch.o \ - audit.o verify.o dot.o policy.o stats.o manifest.o +apk-objs := apk.o \ + app_add.o app_del.o app_fix.o app_update.o app_upgrade.o \ + app_info.o app_list.o app_search.o app_manifest.o \ + app_policy.o app_stats.o \ + app_cache.o app_version.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 archive.o \ version.o io.o url.o gunzip.o blob.o hash.o print.o \ diff --git a/src/add.c b/src/app_add.c index 4ca1dc5..8b0ed1a 100644 --- a/src/add.c +++ b/src/app_add.c @@ -1,4 +1,4 @@ -/* add.c - Alpine Package Keeper (APK) +/* app_add.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2008 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> diff --git a/src/audit.c b/src/app_audit.c index 4f86b40..696599b 100644 --- a/src/audit.c +++ b/src/app_audit.c @@ -1,4 +1,4 @@ -/* audit.c - Alpine Package Keeper (APK) +/* app_audit.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2008 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> diff --git a/src/cache.c b/src/app_cache.c index d663f56..7ea5356 100644 --- a/src/cache.c +++ b/src/app_cache.c @@ -1,4 +1,4 @@ -/* cache.c - Alpine Package Keeper (APK) +/* app_cache.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2008 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> diff --git a/src/del.c b/src/app_del.c index c48cd21..a5e8ddd 100644 --- a/src/del.c +++ b/src/app_del.c @@ -1,4 +1,4 @@ -/* del.c - Alpine Package Keeper (APK) +/* app_del.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2008 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> diff --git a/src/dot.c b/src/app_dot.c index 7b48486..b85d69b 100644 --- a/src/dot.c +++ b/src/app_dot.c @@ -1,4 +1,4 @@ -/* dot.c - Alpine Package Keeper (APK) +/* app_dot.c - Alpine Package Keeper (APK) * * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> * All rights reserved. diff --git a/src/fetch.c b/src/app_fetch.c index dacc7d1..677fabf 100644 --- a/src/fetch.c +++ b/src/app_fetch.c @@ -1,4 +1,4 @@ -/* fetch.c - Alpine Package Keeper (APK) +/* app_fetch.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2008 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> diff --git a/src/fix.c b/src/app_fix.c index 8a7c6b2..ed1ff76 100644 --- a/src/fix.c +++ b/src/app_fix.c @@ -1,4 +1,4 @@ -/* fix.c - Alpine Package Keeper (APK) +/* app_fix.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2008 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> diff --git a/src/index.c b/src/app_index.c index 2508e9e..3e3e437 100644 --- a/src/index.c +++ b/src/app_index.c @@ -1,4 +1,4 @@ -/* index.c - Alpine Package Keeper (APK) +/* app_index.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2008 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> diff --git a/src/info.c b/src/app_info.c index 89e5521..ee9a0aa 100644 --- a/src/info.c +++ b/src/app_info.c @@ -1,4 +1,4 @@ -/* info.c - Alpine Package Keeper (APK) +/* app_info.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2009 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> diff --git a/src/list.c b/src/app_list.c index f121ae5..3315ea3 100644 --- a/src/list.c +++ b/src/app_list.c @@ -1,4 +1,4 @@ -/* list.c - Alpine Package Keeper (APK) +/* app_list.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2009 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> diff --git a/src/manifest.c b/src/app_manifest.c index 1106a74..fe64bea 100644 --- a/src/manifest.c +++ b/src/app_manifest.c @@ -1,4 +1,4 @@ -/* manifest.c - Alpine Package Keeper (APK) +/* app_manifest.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2017 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2017 Timo Teräs <timo.teras@iki.fi> diff --git a/src/policy.c b/src/app_policy.c index dc33a0b..2d6ae4f 100644 --- a/src/policy.c +++ b/src/app_policy.c @@ -1,4 +1,4 @@ -/* policy.c - Alpine Package Keeper (APK) +/* app_policy.c - Alpine Package Keeper (APK) * * Copyright (C) 2013 Timo Teräs <timo.teras@iki.fi> * All rights reserved. diff --git a/src/search.c b/src/app_search.c index fa5b267..9bf64b2 100644 --- a/src/search.c +++ b/src/app_search.c @@ -1,4 +1,4 @@ -/* search.c - Alpine Package Keeper (APK) +/* app_search.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2009 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> diff --git a/src/stats.c b/src/app_stats.c index 33a3285..f800777 100644 --- a/src/stats.c +++ b/src/app_stats.c @@ -1,4 +1,4 @@ -/* stats.c - Alpine Package Keeper (APK) +/* app_stats.c - Alpine Package Keeper (APK) * * Copyright (C) 2013 Timo Teräs <timo.teras@iki.fi> * All rights reserved. diff --git a/src/update.c b/src/app_update.c index 5742127..bbb2b09 100644 --- a/src/update.c +++ b/src/app_update.c @@ -1,4 +1,4 @@ -/* update.c - Alpine Package Keeper (APK) +/* app_update.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2008 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> diff --git a/src/upgrade.c b/src/app_upgrade.c index f0bf16c..02b1ae7 100644 --- a/src/upgrade.c +++ b/src/app_upgrade.c @@ -1,4 +1,4 @@ -/* upgrade.c - Alpine Package Keeper (APK) +/* app_upgrade.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2008 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> diff --git a/src/verify.c b/src/app_verify.c index 098e23c..296253c 100644 --- a/src/verify.c +++ b/src/app_verify.c @@ -1,4 +1,4 @@ -/* verify.c - Alpine Package Keeper (APK) +/* app_verify.c - Alpine Package Keeper (APK) * * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> * All rights reserved. diff --git a/src/ver.c b/src/app_version.c index e3508a2..a29d899 100644 --- a/src/ver.c +++ b/src/app_version.c @@ -1,4 +1,4 @@ -/* ver.c - Alpine Package Keeper (APK) +/* app_version.c - Alpine Package Keeper (APK) * * Copyright (C) 2005-2008 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> |