blob: 7b2af9afe9aa0ea24b550e9a1842fd648171fea7 (
plain) (
blame)
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
|
DO != echo -n > deps.mk
DEBUGFLAGS != [ $(RELEASE) ] && echo "-flto=auto -O2 -DNODEBUG" || echo "-O0 -DDEBUG"
CFLAGS = -Wall -Wextra -g
DEPFLAGS = -MT $@ -MMD -MP -MF $@.d
LINTFLAGS = -fsyntax-only
INCLUDEFLAGS = -Iinclude
COMPILEFLAGS =
LINKFLAGS =
all: ek
# default values
CROSS_COMPILE ?=
# common programs
CC = gcc
SOURCES :=
include src/source.mk
include gen/source.mk
COMPILE = $(CROSS_COMPILE)$(CC) $(DEBUGFLAGS)\
$(CFLAGS) $(DEPFLAGS) $(COMPILEFLAGS) $(INCLUDEFLAGS)
LINT = $(COMPILE) $(LINTFLAGS)
OBJS != ./scripts/gen-deps --sources "$(SOURCES)"
include deps.mk
.PHONY: lint
lint: $(OBJS:.o=.o.l)
.PHONY: format
format:
find src include tests -iname '*.[ch]' |\
xargs -n 10 -P 0 uncrustify -c uncrustify.conf --no-backup -F -
.PHONY: license
license:
find src include tests -iname '*.[ch]' |\
xargs -n 10 -P 0 ./scripts/license
.PHONY: docs
docs:
./scripts/warn-undocumented
doxygen docs/doxygen.conf
.PHONY: check
check: ek
./tests/check.sh
ek: $(OBJS)
$(COMPILE) $(OBJS) -o $@
.PHONY: clean
clean:
$(RM) -r build ek deps.mk
.PHONY: clean_docs
clean_docs:
$(RM) -r docs/output
.PHONY: clean_all
clean_all: clean clean_docs
|