summaryrefslogtreecommitdiff
path: root/Makefile
blob: f29db0b572665da0fd8753ea3b99c5afed012b59 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: test tw/system/%.test tw/home/%.test images tw/system/installer/%.image

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

test: $(homes:.scm=.test) $(systems:.scm=.test)
images: $(installers:.scm=.image)

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

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

tw/system/installer/%.image: tw/system/installer/%.scm
	guix system image -L $(CURDIR) -t iso9660 --label=GUIX_$$(date -Idate) $<