aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-03-23 11:14:13 -0300
committerEuAndreh <eu@euandre.org>2023-03-23 11:14:13 -0300
commitf7fdedcbaf3f234edd8c4e82d734a124155cf119 (patch)
tree0551fa7994cdf9751b6a51fc0bf5c73855be12ac /Makefile
parentTODOs.md: Name "OpenIndiana" over generic "illumos" (diff)
downloadpackage-repository-f7fdedcbaf3f234edd8c4e82d734a124155cf119.tar.gz
package-repository-f7fdedcbaf3f234edd8c4e82d734a124155cf119.tar.xz
Makefile: Put check targets at the end
Diffstat (limited to '')
-rw-r--r--Makefile19
1 files changed, 9 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 510c349..58fdcef 100644
--- a/Makefile
+++ b/Makefile
@@ -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 > $@