diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-15 21:31:20 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-15 21:33:33 (EDT) |
commit | 01a335a5b9d65da3ab33ccf10ed836e165e354fe (patch) | |
tree | 69754fd2c8a6c2b6ddfeb7cdd4ce021b53be7b06 | |
parent | 3ddf087836fa6bb1a8161488cca87dd9b7a875ec (diff) |
src/*/build.mk: Add targets to run ppt-*pkgs
-rw-r--r-- | changelog | 2 | ||||
-rw-r--r-- | src/2/build.mk | 3 | ||||
-rw-r--r-- | src/3/build.mk | 3 |
3 files changed, 8 insertions, 0 deletions
@@ -8,6 +8,8 @@ platconf-pkg-tools (3.0.0) trunk source tree is flatter. * Generated package control files now have a comment stating: "# Generated by ppt-mkpkgs. Do not edit." + * build.mk files now provide "ppt-mkpkgs" and "ppt-rmpkgs" targets to + conveniently run these tools through (prokit and) opkbuild. -- Patrick McDermott <patrick.mcdermott@libiquity.com> Mon, 15 Jul 2019 17:59:07 -0400 diff --git a/src/2/build.mk b/src/2/build.mk index 7f20ec0..aa5b841 100644 --- a/src/2/build.mk +++ b/src/2/build.mk @@ -6,6 +6,9 @@ ppt_platconf_dir = $(ppt_pkg_dir)/usr/share/platconf/$(ppt_plat)/$${pkg}_$${ver} nop build: @: +ppt-mkpkgs ppt-rmpkgs: + @cd ../ && $@ + install-build: set -e; \ for pkg in src/build/*/; do \ diff --git a/src/3/build.mk b/src/3/build.mk index 0e42254..04ee19c 100644 --- a/src/3/build.mk +++ b/src/3/build.mk @@ -6,6 +6,9 @@ ppt_platconf_dir = $(ppt_pkg_dir)/usr/share/platconf/$(ppt_plat)/$${pkg}_$${ver} nop build: @: +ppt-mkpkgs ppt-rmpkgs: + @cd ../ && $@ + install-build: set -e; \ for pkg_ver in src/build/*/; do \ |