mirror of
https://github.com/shvedes/photoshop-linux.git
synced 2025-09-10 05:04:57 +00:00
14 lines
208 B
Makefile
14 lines
208 B
Makefile
SOURCE_FILES := $(shell shfmt -f .)
|
|
|
|
FORMAT_FLAGS := -kp -sr -i 2 -s
|
|
|
|
check:
|
|
desktop-file-validate ./photoshop.desktop
|
|
shellcheck -x $(SOURCE_FILES)
|
|
|
|
fmt:
|
|
shfmt -w \
|
|
$(FORMAT_FLAGS) \
|
|
$(SOURCE_FILES)
|
|
|