summaryrefslogtreecommitdiff
path: root/Makefile
blob: 6433bd9fc58f3dcc7e8b620d59d5638805cc9b5e (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: test tw/system/%.test tw/home/%.test

systems = $(wildcard tw/system/*.scm)
homes = $(wildcard tw/home/*.scm)

test: $(homes:.scm=.test) $(systems:.scm=.test)

tw/home/%.test: tw/home/%.scm
	guix home build -nL $(CURDIR) $<

tw/system/%.test: tw/system/%.scm
	guix system build -nL $(CURDIR) $<