-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (29 loc) · 879 Bytes
/
Makefile
File metadata and controls
40 lines (29 loc) · 879 Bytes
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
# Copyright 2014 Nico Reißmann <nico.reissmann@gmail.com>
# See COPYING for terms of redistribution.
BUILD_OUT_PREFIX = build/
default_target: all
INSTALL ?= install
ifeq ($(shell if [ -e Makefile.config ] ; then echo yes ; else echo no; fi),no)
$(error No build configuration set. Please run ./configure.sh before building.)
endif
include Makefile.config
include Makefile.macros
include jlm/rvsdg/Makefile.sub
include jlm/util/Makefile.sub
include jlm/llvm/Makefile.sub
include jlm/tooling/Makefile.sub
include tests/Makefile.sub
include tools/Makefile.sub
ifdef ENABLE_HLS
include jlm/hls/Makefile.sub
include tools/jhls/Makefile.sub
include tools/jlm-hls/Makefile.sub
endif
ifdef ENABLE_MLIR
include jlm/mlir/Makefile.sub
endif
include Makefile.rules
# Provide support for custom make targets
ifneq ("$(wildcard Makefile.custom)","")
include Makefile.custom
endif