2021-06-23 14:58:44 +00:00
|
|
|
PROJECT_ROOT = $(abspath $(dir $(abspath $(firstword $(MAKEFILE_LIST))))..)
|
|
|
|
|
|
|
|
include $(PROJECT_ROOT)/assets/assets.mk
|
|
|
|
|
|
|
|
$(ASSETS): $(ASSETS_SOURCES) $(ASSETS_COMPILLER)
|
|
|
|
@echo "\tASSETS\t" $@
|
2021-09-13 09:52:50 +00:00
|
|
|
@$(ASSETS_COMPILLER) icons "$(ASSETS_SOURCE_DIR)" "$(ASSETS_COMPILED_DIR)"
|
2021-06-23 14:58:44 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
@echo "\tCLEAN\t"
|
|
|
|
@$(RM) $(ASSETS)
|