From 08997d82b808fcc14f43679f6dcd069a590d642b Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Wed, 22 Mar 2023 19:31:21 -0300 Subject: git mv src/bin/paku src/bin/paku.in Use the derived version without the ".in" suffix as the executable one, and remove the explicit "perl src/bin/paku" invocation with a simple "paku" one. --- Makefile | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2fc55b0..510c349 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ -all: EuAndreh.key guix nix debian homebrew +all: EuAndreh.key guix nix debian homebrew src/bin/paku paku.lock: src/bin/paku Makefile @@ -30,7 +30,7 @@ derived-assets = \ guix: src/org/euandre/packages.scm result-packages result-services src/org/euandre/packages.scm: paku.lock - perl src/bin/paku guix > src/org/euandre/packages.scm + paku guix > src/org/euandre/packages.scm result-packages: guix build -r $@ -v3 -Lsrc/ -K \ @@ -66,14 +66,14 @@ result-services: result-local result-internet nix: default.nix result default.nix: paku.lock - perl src/bin/paku nix > $@ + paku nix > $@ result: nix-build build.nix debian.mk: paku.lock - perl src/bin/paku debian > $@ + paku debian > $@ debian: debian.mk $(MAKE) -f debian.mk @@ -82,7 +82,7 @@ homebrew: Formula Formula: paku.lock mkdir -p $@ - perl src/bin/paku homebrew $@ + paku homebrew $@ touch $@ @@ -92,7 +92,7 @@ public/debian: debian public/paku.html: paku.lock src/bin/paku mkdir -p $(@D) - perl src/bin/paku html > $@ + paku html > $@ public: public/debian public/paku.html @@ -113,7 +113,8 @@ check: all check-ubuntu-deb check-ubuntu-homebrew clean: rm -rf \ - $(derived-assets) result* .paku/ public/ debian.mk + $(derived-assets) result* .paku/ public/ debian.mk \ + src/bin/paku \ EuAndreh.key: paku.lock gpg --armour --export eu@euandre.org > $@ -- cgit v1.2.3