-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathMakefile
80 lines (64 loc) · 2.24 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Begin OS detection
ifeq ($(OS),Windows_NT) # is Windows_NT on XP, 2000, 7, Vista, 10...
OPERATING_SYSTEM := Windows
PATH_SEPARATOR := ;
else
OPERATING_SYSTEM := $(shell uname) # same as "uname -s"
PATH_SEPARATOR := :
endif
# This gives debug output in the C code and some debugger flags, useful for... Debugging.
# See ext/fast_polylines/extconf.rb
DEBUG = # 1
EXT_NAME = fast_polylines
RUBY_FLAG = -I lib$(PATH_SEPARATOR)ext -r $(EXT_NAME)
ALL_TARGETS = $(wildcard ext/$(EXT_NAME)/*.c) $(wildcard ext/$(EXT_NAME)/*.h)
##@ Utility
FMT_TITLE='\\033[7\;1m'
FMT_PRIMARY='\\033[36m'
FMT_END='\\033[0m'
.PHONY: help
help: ## Shows this help menu
@printf -- " FAST-POLYLINES\n"
@printf -- "---------------------------------------------------------------------------\n"
@awk ' \
BEGIN {FS = ":.*##"; printf "Usage: make ${FMT_PRIMARY}<target>${FMT_END}\n"} \
/^[a-zA-Z0-9_-]+:.*?##/ { printf " $(FMT_PRIMARY)%-30s$(FMT_END) %s\n", $$1, $$2 } \
/^##@/ { printf "\n$(FMT_TITLE) %s $(FMT_END)\n", substr($$0, 5) } \
' $(MAKEFILE_LIST)
.PHONY: console
console: ext ## Runs an irb console with fast-polylines
irb $(RUBY_FLAG)
.PHONY: test
test: ext ## Runs tests
bundle exec rspec
.PHONY: memcheck
memcheck: ext ## Run the memory check
bundle exec ruby_memcheck $(RUBY_FLAG) -r rspec/autorun -e '' -- spec
.PHONY: rubocop
rubocop: ## Checks ruby syntax
bundle exec rubocop
.PHONY: benchmark
benchmark: ext ## Run the benchmark
bundle exec ruby $(RUBY_FLAG) ./perf/benchmark.rb
.PHONY: publish
publish: test ## Publish to rubygems
gem build
gem push fast-polylines-*.gem
ext/$(EXT_NAME)/Makefile: ext/$(EXT_NAME)/extconf.rb
cd ext/$(EXT_NAME) && ruby extconf.rb --vendor
ext/$(EXT_NAME)/$(EXT_NAME).bundle: ext/$(EXT_NAME)/Makefile $(ALL_TARGETS)
make -C ext/$(EXT_NAME)
##@ C extension
.PHONY: ext
ext: ext/$(EXT_NAME)/$(EXT_NAME).bundle ## Compiles the C extension
.clangd:
@echo "CompileFlags:\n Add:\n$$(\
pkg-config --cflags python-3.10 | tr ' ' "\0" | xargs -0 -I{} echo ' - {}'\
)" > .clangd
.PHONY: setup-clang
setup-clang: .clangd ## Setup clangd for C/C++ development
.PHONY: clean
clean: ## Cleans compiled stuff
cd ext/$(EXT_NAME) && make clean
rm ext/$(EXT_NAME)/Makefile
rm fast-polylines-*.gem