10 lines
134 B
Makefile
10 lines
134 B
Makefile
.PHONY: all format
|
|
all: .system
|
|
|
|
.system: config.scm
|
|
sudo guix system reconfigure $<
|
|
touch $@
|
|
|
|
format: config.scm
|
|
guix style -f $<
|