1
0
Fork 0
mirror of https://github.com/NixOS/nixos-artwork synced 2024-10-18 00:06:24 -04:00
nixos-artwork/Makefile

15 lines
244 B
Makefile
Raw Permalink Normal View History

modules = icons bootloader
.PHONY: $(modules) install clean all
all: $(modules)
install:
$(MAKE) $(foreach module,$(modules),-C $(module)) install
clean:
$(MAKE) $(foreach module,$(modules),-C $(module)) clean
$(modules):
$(MAKE) -C $@