diff options
author | EuAndreh <eu@euandre.org> | 2023-03-23 11:14:13 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-23 11:14:13 -0300 |
commit | f7fdedcbaf3f234edd8c4e82d734a124155cf119 (patch) | |
tree | 0551fa7994cdf9751b6a51fc0bf5c73855be12ac | |
parent | TODOs.md: Name "OpenIndiana" over generic "illumos" (diff) | |
download | package-repository-f7fdedcbaf3f234edd8c4e82d734a124155cf119.tar.gz package-repository-f7fdedcbaf3f234edd8c4e82d734a124155cf119.tar.xz |
Makefile: Put check targets at the end
-rw-r--r-- | Makefile | 19 |
1 files changed, 9 insertions, 10 deletions
@@ -15,6 +15,9 @@ all: EuAndreh.key guix nix debian homebrew src/bin/paku +EuAndreh.key: paku.lock + gpg --armour --export eu@euandre.org > $@ + paku.lock: src/bin/paku Makefile touch $@ @@ -96,10 +99,15 @@ public/paku.html: paku.lock src/bin/paku public: public/debian public/paku.html - upload: public rsync -avzP --delete public/ euandre.org:/srv/www/s/package-repository/ +clean: + rm -rf \ + $(derived-assets) result* .paku/ public/ debian.mk \ + src/bin/paku \ + + HTTP-REMOTE = 'https://euandre.org/s/package-repository' GIT-REMOTE = 'git://euandre.org/package-repository' check-ubuntu-deb: @@ -109,12 +117,3 @@ check-ubuntu-homebrew: sh tests/vm-check.sh -x -H ubuntu-x86_64-headless -r $(GIT-REMOTE) -t homebrew check: all check-ubuntu-deb check-ubuntu-homebrew - - -clean: - rm -rf \ - $(derived-assets) result* .paku/ public/ debian.mk \ - src/bin/paku \ - -EuAndreh.key: paku.lock - gpg --armour --export eu@euandre.org > $@ |