mirror of
https://github.com/OpenSolo/OpenSolo.git
synced 2025-04-29 22:24:32 +02:00
15 lines
187 B
Makefile
15 lines
187 B
Makefile
|
|
all:
|
|
|
|
clean:
|
|
|
|
BASE := ../../..
|
|
|
|
fmt:
|
|
@python $(BASE)/tools/build/clang-format-run.py --apply
|
|
|
|
fmt-diff:
|
|
@python $(BASE)/tools/build/clang-format-run.py
|
|
|
|
.PHONY: all clean fmt fmt-diff
|