blob: 1afd6d9dfaa68f80d1e5c52e5503d6df815e947d (
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
|
.PHONY: all
all: setup
$(MAKE) -f scripts/makefile
# this kicks all unrecognised targets to the client script.
# note that trying to compile individual files, e.g.
#
# make kernel.elf
#
# will not work, you would need
#
# make -f scripts/makefile kernel.elf
#
# instead
.DEFAULT: setup
$(MAKE) -f scripts/makefile $<
.PHONY: analyze
analyze: setup
CC='gcc -fanalyzer' SKIP_ANALYZER='-fno-analyzer' $(MAKE) CROSS_COMPILE=
.PHONY: setup
setup: deps
@echo -n > deps.mk
@./scripts/gen-deps -p CALC -c COMPILE_CALC -b calc "$(CALC_SOURCES)"
CLEANUP := build deps.mk calc
CLEANUP_CMD :=
CALC_SOURCES :=
include src/source.mk
.PHONY: check
check: all
$(MAKE) -C tests -k check
RM = rm
.PHONY: clean
clean:
$(RM) -rf $(CLEANUP)
$(MAKE) -C deps/ejit clean
.PHONY: deps
deps:
$(MAKE) -C deps/ejit
|