This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/makefile
James Patrick 4926bfba4e Added make targets to make easier to run.
Specifically setup to work with Emac's task runner tooling.
2022-03-07 22:00:10 -05:00

18 lines
397 B
Makefile

# -*- mode: makefile-gmake; -*-
ifeq ($(shell $(MAKE) -v | grep GNU),)
$(error I need gnumake not bsdmake)
endif
REQUIRED_V := 3.82
ifneq ($(REQUIRED_V),$(firstword $(sort $(MAKE_VERSION) $(REQUIRED_V))))
$(error For .ONESHELL to work I need at least version $(REQUIRED_V))
endif
.ONESHELL:
switch:
sudo nixos-rebuild switch --flake .
upgrade:
sudo nix-channel --update
nix flake update