mirror of
https://github.com/anyproto/anytype-heart.git
synced 2025-06-07 21:37:04 +09:00
11 lines
208 B
Makefile
11 lines
208 B
Makefile
# include makefiles
|
|
include $(wildcard makefiles/*.mk)
|
|
|
|
# git config
|
|
$(shell git config core.hooksPath .githooks)
|
|
|
|
.PHONY: $(MAKECMDGOALS)
|
|
|
|
run-server: build-server
|
|
@echo 'Running server...'
|
|
@./dist/server
|