-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
38 lines (28 loc) · 859 Bytes
/
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
# Copyright 2014 Nico Reißmann <[email protected]>
# See COPYING for terms of redistribution.
BUILD_OUT_PREFIX = build/
default_target: all
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