diff options
author | EuAndreh <eu@euandre.org> | 2023-03-16 09:43:31 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-16 09:54:18 -0300 |
commit | fbb6b500ea981b3fe7603288f0496cc3333245bf (patch) | |
tree | 7316b708ab760148b9c798f906a582a79032800d /Makefile | |
parent | queue.scm: Use mkdir-p/perms vs mkdir-p+chown+chmod (diff) | |
download | package-repository-fbb6b500ea981b3fe7603288f0496cc3333245bf.tar.gz package-repository-fbb6b500ea981b3fe7603288f0496cc3333245bf.tar.xz |
queue.scm: Split postfix-service-type into {local,internet}-postfix-service-type
Also add those to `Makefile` as separate targets.
BONUS: better naming of Guix targets in `Makefile`. Instead of
`all-{packages,services}`, it is now `guix-{packages,services}`,
as there are other packages being built that do not belong to
Guix, and maybe more services in the future.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 20 |
1 files changed, 13 insertions, 7 deletions
@@ -4,18 +4,24 @@ all: EuAndreh.key guix nix -guix: all-packages all-services +guix: guix-packages guix-services -nix: - nix-build build.nix - -all-packages: +guix-packages: guix build -v3 -Lsrc/ -K \ -f src/org/euandre/packages.scm \ -f src/org/euandre/queue.scm \ -all-services: - guix system -v3 -Lsrc/ -K build tests/test-system.scm +guix-services-local: + guix system -v3 -Lsrc/ -K build tests/local-system.scm + +guix-services-internet: + guix system -v3 -Lsrc/ -K build tests/internet-system.scm + +guix-services: guix-services-local guix-services-internet + +nix: + nix-build build.nix + refresh: sh scripts/paku -rg |