shut up about dirty git trees

This commit is contained in:
rhiannon morris 2022-05-25 16:01:54 +02:00
parent 3cf246b4dc
commit 818d559d58
1 changed files with 16 additions and 8 deletions

View File

@ -1,30 +1,38 @@
all: quox
NIXFLAGS := --no-warn-dirty
# these two are real files, but always ask nix if they need remaking
.PHONY: quox
quox:
nix build --no-link '.#quox'
ln -sfL $$(nix path-info '.#quox')/bin/quox quox
@echo [build] quox
nix build $(NIXFLAGS) --no-link '.#quox'
ln -sfL $$(nix path-info $(NIXFLAGS) '.#quox')/bin/quox quox
.PHONY: quox-tests
quox-tests:
nix build --no-link '.#quox-tests'
ln -sfL $$(nix path-info '.#quox-tests')/bin/quox-tests quox-tests
@echo [build] quox-tests
nix build $(NIXFLAGS) --no-link '.#quox-tests'
ln -sfL $$(nix path-info $(NIXFLAGS) '.#quox-tests')/bin/quox-tests quox-tests
.PHONY: lib
lib:
nix build --no-link '.#quox-lib'
@echo [build] quox-lib
nix build $(NIXFLAGS) --no-link '.#quox-lib'
.PHONY: test
test:
nix run -- '.#quox-tests' -V 14 -c
nix run $(NIXFLAGS) -- '.#quox-tests' -V 14 -c
.PHONY: prove
prove:
nix build --no-link '.#quox-tests'
prove $$(nix path-info '.#quox-tests')/bin/quox-tests
nix build $(NIXFLAGS) --no-link '.#quox-tests'
prove $$(nix path-info $(NIXFLAGS) '.#quox-tests')/bin/quox-tests
.PHONY: clean
clean:
@echo [clean]
rm -f quox quox-tests result
.SILENT: