1
0
Fork 0
mirror of https://github.com/NixOS/nixos-artwork synced 2024-10-18 00:06:24 -04:00
nixos-artwork/Makefile
Benjamin Staffin 9695a12c8c Generate scaled icons of various sizes
Assembled into a barebones icon theme following the freedesktop.org
icon theme spec:

https://specifications.freedesktop.org/icon-theme-spec/icon-theme-spec-0.11.html
2017-03-16 16:47:31 -04:00

15 lines
233 B
Makefile

modules = icons
.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 $@