diff options
author | EuAndreh <eu@euandre.org> | 2023-03-23 11:20:56 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-23 11:21:01 -0300 |
commit | 86c08fe09b44982e64a16088dc39de5de777103c (patch) | |
tree | 4db73c93ba76ff9ba74eb233450a88db6f291bb1 /Makefile | |
parent | Makefile: Put check targets at the end (diff) | |
download | package-repository-86c08fe09b44982e64a16088dc39de5de777103c.tar.gz package-repository-86c08fe09b44982e64a16088dc39de5de777103c.tar.xz |
Makefile: Add architecture to check target name
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -110,10 +110,12 @@ clean: HTTP-REMOTE = 'https://euandre.org/s/package-repository' GIT-REMOTE = 'git://euandre.org/package-repository' -check-ubuntu-deb: +check-ubuntu-x86_64-deb: sh tests/vm-check.sh -x -H ubuntu-x86_64-headless -r $(HTTP-REMOTE) -t deb -check-ubuntu-homebrew: +check-ubuntu-x86_64-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 +check-ubuntu: check-ubuntu-x86_64-deb check-ubuntu-x86_64-homebrew + +check: all check-ubuntu |